import './stack'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { direction: { control: string; options: string[]; }; alignItems: { control: string; options: string[]; }; justifyContent: { control: string; options: string[]; }; spacing: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { direction: 'row' | 'row-reverse' | 'column' | 'column-reverse'; alignItems: 'flex-start' | 'center' | 'flex-end' | 'stretch' | 'baseline'; justifyContent: 'flex-start' | 'center' | 'flex-end' | 'space-between' | 'space-around' | 'space-evenly'; spacing: string; } export declare const StackDefault: Story; export declare const RowExample: Story; export declare const ColumnExample: Story;