import * as React from 'react'; import { Style } from 'inlines'; export type StackProps = Omit, 'style'> & { children?: React.ReactNode; as?: 'div' | 'ul' | 'label' | 'aside' | string; style?: Style; grid?: boolean | number; shape?: 'square'; direction?: 'row' | 'column'; grow?: boolean; justify?: 'center' | 'between' | 'end' | 'start'; align?: 'center' | 'start' | 'end' | 'stretch'; display?: boolean | 'block' | 'flex' | 'grid' | 'inline-flex'; fitContent?: boolean; padding?: 4 | 8 | 16 | 32 | 64 | true; gap?: 0 | 2 | 4 | 6 | 8 | 12 | 16 | 24 | 32 | 64; }; type StackComponent = (props: StackProps) => React.ReactNode; export declare const Stack: StackComponent; export {};