import type { TdBreadcrumbProps, TdBreadcrumbItemProps } from '../type';
interface BreadcrumbItemWithIndex extends TdBreadcrumbItemProps {
    index: number;
}
export declare const useBreadcrumbOptions: (props: TdBreadcrumbProps) => {
    breadcrumbOptions: import("vue").ComputedRef<BreadcrumbItemWithIndex[]>;
};
export {};
