/// declare type Direction = 'horizontal' | 'vertical'; declare type Width = 'thin' | 'medium' | 'thick' | 'xthick'; export interface Props { width?: Width; direction?: Direction; } export declare function Separator({ width, direction }: Props): JSX.Element; export {};