import { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface BreadcrumbsProps extends PublicComponentProps {
    /**
     * The inner contents of the component.
     */
    children?: ReactNode;
}
export declare const Breadcrumbs: ({ children, className, ...rest }: BreadcrumbsProps) => JSX.Element;
//# sourceMappingURL=Breadcrumbs.d.ts.map