import './circular-progress'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { indeterminate: { control: string; }; progress: { control: string; min: number; max: number; step: number; }; density: { control: string; min: number; max: number; step: number; }; closed: { control: string; }; color1: { control: string; }; color2: { control: string; }; color3: { control: string; }; color4: { control: string; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { indeterminate?: boolean; progress: number; density: number; closed?: boolean; color1: string; color2: string; color3: string; color4: string; } export declare const Default: Story;