import '../list/list'; import './list-item'; import './list-item-check'; import './list-item-radio'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { value: { control: string; }; group: { control: string; }; tabindex: { control: string; }; disabled: { control: string; }; twoline: { control: string; }; activated: { control: string; }; graphic: { control: string; options: (string | null)[]; }; multipleGraphics: { control: string; }; hasMeta: { control: string; }; noninteractive: { control: string; }; selected: { control: string; }; left: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { value?: string; group: string; tabindex: number; disabled?: boolean; twoline?: boolean; activated?: boolean; graphic: null | 'avatar' | 'icon' | 'medium' | 'large' | 'control'; multipleGraphics?: boolean; hasMeta?: boolean | null; noninteractive?: boolean; selected?: boolean; left?: boolean; } export declare const Default: Story; export declare const Checkbox: Story; export declare const Radio: Story;