import * as React from 'react'; declare enum Spacing { SPACING_NONE = "none", SPACING_HALF = "half", SPACING_1 = "1", SPACING_1_5 = "1-5", SPACING_2 = "2", SPACING_2_5 = "2-5", SPACING_3 = "3", SPACING_4 = "4", SPACING_5 = "5" } export interface StackProps { spacing: `${Spacing}`; direction?: 'column' | 'row'; verticalAligning?: 'start' | 'center' | 'end'; } export declare function Stack(props: React.PropsWithChildren): React.JSX.Element; export {};