import './link'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { href: { control: string; }; route: { control: string; }; _target: { options: string[]; control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { href: string; route: string; _target: '_blank' | '_self' | '_parent' | '_top'; } export declare const Default: Story; export declare const Route: Story; export declare const Typography: Story;