/// <reference types="react" />
export interface Props {
    list?: {
        text: string;
        link: string;
        isSelected?: boolean;
    }[];
}
export declare const Breadcrumbs: ({ list }: Props) => JSX.Element;
