import './chip'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { disabled: { type: string; }; closable: { type: string; }; selectable: { type: string; }; hidden: { type: string; }; selected: { type: string; }; outlined: { type: string; }; color: { type: string; options: (string | undefined)[]; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { disabled: boolean; closable: boolean; selectable: boolean; hidden: boolean; selected: boolean; outlined: boolean; disableCheck: boolean; color: 'primary' | 'success' | 'warning' | 'error' | 'info' | undefined; } export declare const Default: Story; export declare const PropFilled: Story;