import { HTMLAttributes } from 'react'; import { BaseComponentProps } from '../../../types'; import './Stack.css'; export interface StackProps extends BaseComponentProps, Omit, 'className' | 'style'> { spacing?: '0' | '1' | '2' | '3' | '4' | '5' | '6' | '8' | '10' | '12' | '16'; direction?: 'vertical' | 'horizontal'; divider?: boolean; } export declare const Stack: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Stack.d.ts.map