import { type BreadcrumbProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [BreadcrumbProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L313)
 * ## Props
 * @prop children
 * @prop solid = false
 * @prop class: className
 * @prop olClass
 * @prop ariaLabel = "Breadcrumb"
 * @prop ...restProps
 */
declare const Breadcrumb: import("svelte").Component<BreadcrumbProps, {}, "">;
type Breadcrumb = ReturnType<typeof Breadcrumb>;
export default Breadcrumb;
