import { SvelteComponent } from "svelte"; declare const __propDef: { props: { /** Can be used to exclude a path prefix EX: excludePrefix == '/dashboard' => route == '/dashboard/settings' => route == '/settings'*/ excludePrefix?: string | undefined; /** Allows you to apply a custom transform to the path name */ transform?: (pathName: string) => string; separator?: string; /** Will prevent the transformation from being run on direct children of the routes provided*/ doNotTransform?: string[]; url: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type BreadCrumbsDemoProps = typeof __propDef.props; export type BreadCrumbsDemoEvents = typeof __propDef.events; export type BreadCrumbsDemoSlots = typeof __propDef.slots; export default class BreadCrumbsDemo extends SvelteComponent { } export {};