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 WrapProperties = { gap?: PropertyValue<'gap'> rowGap?: PropertyValue<'gap'> columnGap?: PropertyValue<'gap'> align?: PropertyValue<'alignItems'> justify?: PropertyValue<'justifyContent'> } type WrapOptions = WrapProperties & Omit export declare function wrap(options?: WrapOptions): string