import './skeleton'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { type: { options: string[]; control: { type: string; }; }; width: { control: { type: string; }; }; height: { control: { type: string; }; }; animation: { options: string[]; control: { type: string; }; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { type: 'rectangle' | 'circle' | 'text'; width: number; height: number; animation: 'pulse' | 'sheen' | 'none'; } export declare const Default: Story; export declare const Typography: Story;