export interface Horizontal { state: 'horizontal'; option: 'left' | 'center' | 'right'; } export interface Vertical { state: 'vertical'; option: 'bottom' | 'center' | 'top'; } export declare type Direction = Horizontal | Vertical; export declare type OptionsMapping = { [key: string]: { prop: string; value: string; }; };