declare enum Position { topLeft = "topLeft", top = "top", topRight = "topRight", left = "left", center = "center", right = "right", bottomLeft = "bottomLeft", bottom = "bottom", bottomRight = "bottomRight" } export declare type ModalPosition = Position | keyof typeof Position; interface AbsolutePosition { position: 'absolute'; top?: string | number; left?: string | number; bottom?: string | number; right?: string | number; transform?: string; } export declare function modalAbsolutePositionAsString(position: ModalPosition): string; export declare function modalAbsolutePosition(position: ModalPosition): AbsolutePosition; export {}; //# sourceMappingURL=modal-position.d.ts.map