///
export declare type CrumbProps = Readonly<{
name: string;
url: string;
}>;
export declare enum DividerPosition {
TOP = "top",
BOTTOM = "bottom",
NONE = "none"
}
export declare type BreadcrumbProps = {
crumbs: Array;
divider?: DividerPosition;
};
export declare const Breadcrumb: {
({ crumbs, divider }: BreadcrumbProps): JSX.Element;
defaultProps: {
divider: DividerPosition;
};
};