///
declare const StackItem: import("react").ForwardRefExoticComponent, "style" | "className"> & {
$as?: import("react").ElementType | undefined;
className?: import("..").Styles;
style?: import("..").Styles;
} & Partial<{
shrink: boolean;
index: number;
}> & {
children?: import("react").ReactNode;
} & import("react").RefAttributes>;
export default StackItem;