import { default as React } from 'react';
interface Props {
    id?: string;
    data: {
        title: string | React.ReactElement;
        url: string;
        isDisabled?: boolean;
        className?: string;
    }[];
    size?: string;
    underline?: string;
    className?: string;
    onClick?: (url: string) => () => void;
}
declare const Breadcrumb: React.FC<Props>;
export default Breadcrumb;
