type Direction = 'horizontal' | 'vertical'; type Width = 'thin' | 'medium' | 'thick' | 'xthick'; export interface SeparatorProps { width?: Width; direction?: Direction; } /** * Separators create visual separation between sections of an interface. */ export declare const Separator: "Separator" & { readonly type?: "Separator" | undefined; readonly props?: SeparatorProps | undefined; /** * Separators create visual separation between sections of an interface. */ readonly children?: true | undefined; }; export {}; //# sourceMappingURL=Separator.d.ts.map