import * as SeparatorPrimitive from '@radix-ui/react-separator'; import type { ComponentProps, FC } from 'react'; export type SeparatorProps = ComponentProps & { dataTestId?: string; }; export declare const Separator: FC;