import { ReactNode } from 'react'; export declare const alignOptions: { auto: string; start: string; end: string; center: string; stretch: string; baseline: string; }; export declare const overflowOptions: { scroll: string; hidden: string; visible: string; auto: string; }; export declare const possibleAsTypes: readonly ["div", "li", "span", "section", "dd", "dt"]; export type ItemProps = { children: ReactNode; grow?: boolean; shrink?: boolean; align?: keyof typeof alignOptions; overflow?: keyof typeof overflowOptions; as?: (typeof possibleAsTypes)[number]; isFullWidth?: boolean; }; export declare const StackItem: import("react").ForwardRefExoticComponent>;