/// <reference types="react" />
export interface BreadcrumbsProps {
    className?: string;
    style?: React.CSSProperties;
    size?: 'sm' | 'md' | 'lg';
    homeLabel?: string;
    separator?: 'slash' | 'arrow' | 'pipe' | 'dot';
}
