/* eslint-disable */ import type { SystemStyleObject, ConditionalValue } from '../types' import type { Properties } from '../types/csstype' import type { PropertyValue } from '../types/prop-type' import type { DistributiveOmit } from '../types/system-types' import type { Tokens } from '../tokens' export type CenterProperties = { inline?: ConditionalValue } type CenterStyles = CenterProperties & DistributiveOmit interface CenterPatternFn { (styles?: CenterStyles): string raw: (styles: CenterStyles) => SystemStyleObject } export declare const center: CenterPatternFn;