import './breadcrumb-item'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { href: { control: string; }; target: { control: string; options: (string | undefined)[]; }; rel: { control: string; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { href: string; target: '_blank' | '_parent' | '_self' | '_top' | undefined; rel: string; } export declare const Default: Story; export declare const PropFilled: Story;