import type { SystemStyleObject, ConditionalValue } from '../types' import type { PropertyValue } from '../types/prop-type' import type { Properties } from '../types/csstype' import type { Tokens } from '../tokens' export type GridProperties = { gap?: PropertyValue<'gap'> columnGap?: PropertyValue<'gap'> rowGap?: PropertyValue<'gap'> columns?: ConditionalValue minChildWidth?: ConditionalValue } type GridOptions = GridProperties & Omit export declare function grid(options?: GridOptions): string