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[];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type BreadCrumbsProps = typeof __propDef.props;
export type BreadCrumbsEvents = typeof __propDef.events;
export type BreadCrumbsSlots = typeof __propDef.slots;
/**
 * A component to show the current path.
 *
 * [See Docs](https://geist-ui-svelte.dev/components/breadcrumbs) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
 */
export default class BreadCrumbs extends SvelteComponent<BreadCrumbsProps, BreadCrumbsEvents, BreadCrumbsSlots> {
}
export {};
