/** * Defines the available gapSizes and their mapping to the tokens. * @public */ export declare const spacingProperties: { 0: string; 2: string; 4: string; 6: string; 8: string; 12: string; 16: string; 20: string; 24: string; 32: string; 40: string; 48: string; 56: string; 64: string; }; /** * Union type of the available GapSizes * @public */ export type SpacingProperties = keyof typeof spacingProperties; /** @public */ export declare const marginProperties: { auto: string; 0: string; 2: string; 4: string; 6: string; 8: string; 12: string; 16: string; 20: string; 24: string; 32: string; 40: string; 48: string; 56: string; 64: string; }; /** @public */ export type MarginProperties = keyof typeof marginProperties; /** @public */ export declare const justifySelfPositionProps: { auto: string; baseline: string; left: string; normal: string; right: string; stretch: string; center: string; end: string; 'flex-end': string; 'flex-start': string; 'self-end': string; 'self-start': string; start: string; }; /** @public */ export type JustifySelfPositionProps = keyof typeof justifySelfPositionProps; /** @public */ export declare const alignSelfPositionProps: { auto: string; baseline: string; normal: string; stretch: string; center: string; end: string; 'flex-end': string; 'flex-start': string; 'self-end': string; 'self-start': string; start: string; }; /** @public */ export type AlignSelfPositionProps = keyof typeof alignSelfPositionProps; /** @public */ export declare const placeSelfPositionProps: { auto: string; baseline: string; normal: string; stretch: string; center: string; end: string; 'flex-end': string; 'flex-start': string; 'self-end': string; 'self-start': string; start: string; }; /** @public */ export type PlaceSelfPositionProps = keyof typeof placeSelfPositionProps; /** @public */ export declare const justifyItemsPositionProps: { baseline: string; left: string; legacy: string; normal: string; right: string; stretch: string; center: string; end: string; 'flex-end': string; 'flex-start': string; 'self-end': string; 'self-start': string; start: string; }; /** @public */ export type JustifyItemsPositionProps = keyof typeof justifyItemsPositionProps; /** @public */ export declare const alignItemsPositionProps: { baseline: string; normal: string; stretch: string; center: string; end: string; 'flex-end': string; 'flex-start': string; 'self-end': string; 'self-start': string; start: string; }; /** @public */ export type AlignItemsPositionProps = keyof typeof alignItemsPositionProps; /** @public */ export declare const placeItemsPositionProps: { baseline: string; normal: string; stretch: string; center: string; end: string; 'flex-end': string; 'flex-start': string; 'self-end': string; 'self-start': string; start: string; }; /** @public */ export type PlaceItemsPositionProps = keyof typeof placeItemsPositionProps; /** @public */ export declare const justifyContentPositionProps: { left: string; normal: string; right: string; center: string; end: string; 'flex-end': string; 'flex-start': string; start: string; 'space-around': string; 'space-between': string; 'space-evenly': string; stretch: string; }; /** @public */ export type JustifyContentPositionProps = keyof typeof justifyContentPositionProps; /** @public */ export declare const alignContentPositionProps: { baseline: string; normal: string; center: string; end: string; 'flex-end': string; 'flex-start': string; start: string; 'space-around': string; 'space-between': string; 'space-evenly': string; stretch: string; }; /** @public */ export type AlignContentPositionProps = keyof typeof alignContentPositionProps; /** @public */ export declare const placeContentPositionProps: { baseline: string; normal: string; center: string; end: string; 'flex-end': string; 'flex-start': string; start: string; 'space-around': string; 'space-between': string; 'space-evenly': string; stretch: string; }; /** @public */ export type PlaceContentPositionProps = keyof typeof placeContentPositionProps;