import { SeparatorProps } from './separator.types'; /** * Separator * ============================================================ * A visual separator that divides content sections * * Features: * * - allows forwarding refs to the underlying DOM element * - accepts all native html 'HTMLDivElement' attributes (including aria- & data-attributes) * - supports 'variants', 'orientation', etc. configured in the recipe * - allows overriding styles by using style-props * - supports 'asChild' and 'as' to modify the underlying html-element (polymorphic) * - built with React Aria for accessibility */ export declare const Separator: { ({ ref: forwardedRef, orientation, ...props }: SeparatorProps): import("react/jsx-runtime").JSX.Element; displayName: string; };