export declare type Orientation = 'horizontal' | 'vertical'; export declare type Style = 'solid' | 'dotted' | 'dashed'; export declare type Thickness = 'light' | 'regular' | 'thick'; export interface DividerProps { orientation?: Orientation; borderStyle?: Style; thickness?: Thickness; }