import './typography'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { title: { control: string; }; textColor: { control: string; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { title?: string; textColor?: string; } export declare const Regular: Story;