import { Separator as SeparatorPrimitive } from '@base-ui/react/separator'; import { type VariantProps } from 'class-variance-authority'; declare const separator: (props?: ({ size?: "small" | "full" | "half" | null | undefined; color?: "primary" | "secondary" | "tertiary" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type SeparatorProps = SeparatorPrimitive.Props & VariantProps & { /** * When true, the separator is purely decorative and hidden from * assistive technology. Use for visual dividers that don't convey * structure. * @default false */ decorative?: boolean; }; export declare function Separator({ className, orientation, size, color, decorative, ...props }: SeparatorProps): import("react/jsx-runtime").JSX.Element; export declare namespace Separator { var displayName: string; } export {}; //# sourceMappingURL=separator.d.ts.map