import type { BreadcrumbItemProps } from "..";
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Type
 * [BreadcrumbItemProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L309)
 * ## Props
 * @prop children
 * @prop icon
 * @prop home = false
 * @prop href
 * @prop linkClass
 * @prop spanClass
 * @prop homeClass
 * @prop class: className
 * @prop classes
 * @prop ...restProps
 */
declare const BreadcrumbItem: import("svelte").Component<BreadcrumbItemProps, {}, "">;
type BreadcrumbItem = ReturnType<typeof BreadcrumbItem>;
export default BreadcrumbItem;
