import { FC, PropsWithChildren } from 'react'; /** * StackItem properties */ export interface StackItemProps { /** Align Self */ alignSelf?: 'auto' | 'stretch' | 'flex-start' | 'flex-end' | 'center' | 'baseline'; /** flex-basis */ basis?: string | number; /** Additional classes */ className?: string; /** If true, item fills maximum availiable space */ fill?: boolean; /** flex-grow */ grow?: number | 0 | 1 | 2 | 3 | 4 | 5; /** order */ order?: number; /** flex-shrink */ shrink?: number; } export declare const StackItem: FC>;