import { default as React } from 'react'; import { ElementType } from '../../types/type'; export interface StackProps extends React.HTMLAttributes { children: React.ReactNode; className?: string; direction?: 'vertical' | 'horizontal'; spacing?: string; element?: ElementType; } export declare const Stack: ({ children, direction, spacing, element, className, ...props }: StackProps) => React.JSX.Element; export default Stack; //# sourceMappingURL=Stack.d.ts.map