export { Spacer } from './Spacer'; export interface StackProperties { /** The direction of the stack */ direction: 'vertical' | 'horizontal'; /** The sets the alignment of the stack for the opposite direction of the stack, i.e. for a vertical stack it is the horizontal alignment */ align?: 'start' | 'middle' | 'end'; /** The spacing between children */ spacing?: 'small' | 'medium' | 'large'; /** The padding for stack container */ padding?: 'small' | 'medium' | 'large'; /** Stretches the container to fit the space */ stretch?: boolean; } export declare const Stack: import("@dojo/framework/core/interfaces").DefaultChildrenWNodeFactory<{ properties: StackProperties & import("@dojo/framework/core/interfaces").WidgetProperties & { variant?: "default" | "inherit" | undefined; } & import("@dojo/framework/core/middleware/theme").ThemeProperties; children: import("@dojo/framework/core/interfaces").DNode[]; }>; export default Stack;