import type { ComponentPropsWithoutRef, FC, Ref } from 'react'; import { type VariantProps } from 'class-variance-authority'; import type { TestableProps } from '../../utils/testId'; declare const separatorVariants: (props?: ({ orientation?: "horizontal" | "vertical" | null | undefined; spacing?: 1 | 2 | 4 | 6 | 8 | 16 | 44 | 80 | 12 | 20 | 32 | 40 | 24 | 56 | 48 | 28 | 36 | 64 | 96 | 112 | 128 | 144 | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type SeparatorProps = ComponentPropsWithoutRef<'div'> & VariantProps & TestableProps & { ref?: Ref; orientation?: 'horizontal' | 'vertical'; decorative?: boolean; }; export declare const Separator: FC; export {};