import type { ISeparatorProps } from './Separator.types'; /** * Separator — visual divider wrapping Base UI Separator. * * @param orientation - 'horizontal' or 'vertical' * * @example * ```tsx * * ``` */ declare function Separator({ className, orientation, slots, ...props }: ISeparatorProps): import("react/jsx-runtime").JSX.Element; export { Separator }; export type { ISeparatorProps } from './Separator.types'; export type { SeparatorSlot } from './Separator.styles'; //# sourceMappingURL=index.d.ts.map