import React, { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface BreadcrumbItemProps extends PublicComponentProps {
    /**
     * Whether or not the breadcrumb is active.
     */
    active?: boolean;
    /**
     * The inner contents of the component.
     */
    children?: ReactNode;
}
export declare const BreadcrumbItem: ({ active, children, className, ...rest }: BreadcrumbItemProps) => React.JSX.Element;
//# sourceMappingURL=BreadcrumbItem.d.ts.map