import { Style } from 'inlines'; type SeparatorProps = { orientation?: 'horizontal' | 'vertical'; variant?: 'line' | 'dot'; style?: Style; }; declare function Separator({ orientation, variant, style, }: SeparatorProps): import("react/jsx-runtime").JSX.Element; export { Separator }; export type { SeparatorProps };