import * as React from 'react'; import * as SeparatorPrimitive from '@radix-ui/react-separator'; export type SeparatorProps = React.ComponentPropsWithoutRef & { type?: 'line' | 'dot'; }; /** * - type dot -> SeparatorV2 * - type line -> Divider * @deprecated * */ declare const Separator: React.ForwardRefExoticComponent, "ref"> & { type?: "line" | "dot" | undefined; } & React.RefAttributes>; export { Separator };