import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; large?: boolean | undefined; items?: Partial<{ disabled: boolean; href: string; text: string; class: string; props: Record; }>[] | undefined; style?: string | null | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { divider: {}; default: { item: Partial<{ disabled: boolean; href: string; text: string; class: string; props: Record; }>; }; }; }; export declare type BreadcrumbsProps = typeof __propDef.props; export declare type BreadcrumbsEvents = typeof __propDef.events; export declare type BreadcrumbsSlots = typeof __propDef.slots; export default class Breadcrumbs extends SvelteComponentTyped { } export {};