import { ComponentPropsWithoutRef, ReactNode, Ref } from 'react'; interface ToolbarSeparatorOwnProps { /** Optional content rendered inside the separator (rare - the separator is normally just a thin rule). */ children?: ReactNode; /** Extra classes for the separator element. */ className?: string; /** Forwarded to the separator `
`. */ ref?: Ref; } export type ToolbarSeparatorProps = ToolbarSeparatorOwnProps & Omit, keyof ToolbarSeparatorOwnProps>; /** Shape of `ToolbarSeparator` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type ToolbarSeparatorDefaultProps = Partial>; export declare const ToolbarSeparator: (props: ToolbarSeparatorProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ToolbarSeparator.d.ts.map