import type { ReactElement } from 'react'; import type { ButtonProps } from '../Button'; type ButtonChild = ReactElement; export type StackProps = Required> & Partial> & { direction: 'horizontal' | 'vertical'; /** Gap between each button */ gap?: number; children: ButtonChild | ButtonChild[]; }; export declare function Stack({ children, direction, top, left, width, height, background, color, variant, UCID, gap, }: StackProps): import("react").JSX.Element; export {};