import './button'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { icon: { control: string; }; raised: { control: string; }; unelevated: { control: string; }; outlined: { control: string; }; dense: { control: string; }; disabled: { control: string; }; trailingIcon: { control: string; }; fullwidth: { control: string; }; expandContent: { control: string; }; color: { options: (string | undefined)[]; control: { type: string; }; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { icon: string; raised?: boolean; unelevated?: boolean; outlined?: boolean; dense?: boolean; disabled?: boolean; trailingIcon?: boolean; fullwidth?: boolean; expandContent?: boolean; color?: string; } interface ArgTypes { icon: string; raised?: boolean; unelevated?: boolean; outlined?: boolean; dense?: boolean; disabled?: boolean; trailingIcon?: boolean; fullwidth?: boolean; expandContent?: boolean; color?: string; } export declare const Default: Story; export declare const Icons: Story;