import * as React from "react";
import type { MergeElementProps } from "../../typings";
interface OwnProps {
    /**
     * The content of the component.
     */
    children?: React.ReactNode;
    /**
     * The className applied to the component.
     */
    className?: string;
}
export type Props = Omit<MergeElementProps<"li", OwnProps>, "defaultChecked" | "defaultValue">;
declare const BreadcrumbItem: (props: Props, ref: React.Ref<HTMLLIElement>) => JSX.Element;
export default BreadcrumbItem;
