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