import * as React from 'react'; import { Separator as BaseSeparator } from '@base-ui/react/separator'; type SeparatorVariant = 'solid' | 'dashed' | 'dotted' | 'double' | 'gradient' | 'wave' | 'zigzag'; type SeparatorProps = React.ComponentProps & { /** * Line style. `gradient`, `wave`, `zigzag`, and `dotted` are decorative. * @default 'solid' */ variant?: SeparatorVariant; }; declare function Separator({ className, orientation, variant, children, ...props }: SeparatorProps): React.JSX.Element; export { Separator }; export type { SeparatorProps }; //# sourceMappingURL=separator.d.ts.map