export interface CssPositions { top: number | string; bottom: number | string; left: number | string; right: number | string; } export declare type CSSPosition = keyof CssPositions; export declare type CSSVertices = 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'; export declare type StyleValues = string | number;