import './format-date'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { date: { control: string; }; lang: { control: string; options: string[]; }; weekday: { control: string; options: string[]; }; era: { control: string; options: string[]; }; year: { control: string; options: string[]; }; month: { control: string; options: string[]; }; day: { control: string; options: string[]; }; hour: { control: string; options: string[]; }; minute: { control: string; options: string[]; }; second: { control: string; options: string[]; }; timeZoneName: { control: string; options: string[]; }; timeZone: { control: string; options: string[]; }; hourFormat: { control: string; options: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { date: string; lang: string; weekday: 'narrow' | 'short' | 'long'; era: 'narrow' | 'short' | 'long'; year: 'numeric' | '2-digit'; month: 'numeric' | '2-digit' | 'narrow' | 'short' | 'long'; day: 'numeric' | '2-digit'; hour: 'numeric' | '2-digit'; minute: 'numeric' | '2-digit'; second: 'numeric' | '2-digit'; timeZoneName: 'short' | 'long'; timeZone: string; hourFormat: 'auto' | '12' | '24'; } export declare const Regular: Story; export declare const PropFilled: Story;