import './icon-button-toggle'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { ariaLabel: { control: string; }; on: { control: string; }; onIcon: { control: string; }; offIcon: { control: string; }; disabled: { control: string; }; ariaLabelOn: { control: string; }; ariaLabelOff: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { ariaLabel: string; on?: boolean; onIcon: string; offIcon: string; disabled?: boolean; ariaLabelOn: string; ariaLabelOff: string; } export declare const Default: Story; export declare const PropFilled: Story;