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