import { ComponentProps, FC } from 'react'; import { Alignment } from './types/alignment'; import { Separator } from './types/separator'; import { Size } from './types/size'; type Props = { alignment?: Alignment; separator?: Separator; size?: Size; }; export declare const Breadcrumb: FC, keyof Props> & Props>; export {};