import { LidoComponentProps } from '../utils/index.js'; export type { Theme } from '../theme/index.js'; export declare enum StackAlign { 'center' = 0, 'stretch' = 1, 'flex-start' = 2, 'flex-end' = 3, 'baseline' = 4 } export declare type StackAligns = keyof typeof StackAlign; export declare enum StackJustify { 'center' = 0, 'start' = 1, 'end' = 2, 'stretch' = 3, 'flex-start' = 4, 'flex-end' = 5, 'space-around' = 6, 'space-between' = 7, 'space-evenly' = 8 } export declare type StackJustifies = keyof typeof StackJustify; export declare enum StackDirection { 'row' = 0, 'row-reverse' = 1, 'column' = 2, 'column-reverse' = 3 } export declare type StackDirections = keyof typeof StackDirection; export declare enum StackWrap { 'nowrap' = 0, 'wrap' = 1, 'wrap-reverse' = 2 } export declare type StackWraps = keyof typeof StackWrap; export declare enum StackSpacing { xs = 0, sm = 1, md = 2, lg = 3, xl = 4, xxl = 5 } export declare type StackSpacings = keyof typeof StackSpacing; export declare type StackProps = LidoComponentProps<'div', { align?: StackAligns; justify?: StackJustifies; direction?: StackDirections; wrap?: StackWraps; spacing?: StackSpacings; }>; export declare type StackItemProps = LidoComponentProps<'div', { grow?: number; shrink?: number; basis?: string; }>; export declare type HStackProps = { reverse?: boolean; } & Omit; export declare type VStackProps = { reverse?: boolean; } & Omit; //# sourceMappingURL=types.d.ts.map