import type { FC } from 'react';
import type { BreadcrumbItem } from '../type';
import './index.less';
export interface BreadcrumbProps {
    data: BreadcrumbItem[];
    onClick: (res: BreadcrumbItem, index: number) => void;
}
declare const Breadcrumb: FC<BreadcrumbProps>;
export default Breadcrumb;
