Files
2026-02-21 10:33:18 +01:00

10 lines
362 B
TypeScript

import React from 'react';
export declare const getMaxModalWidth: (width: number) => string;
export declare const getMaxModalHeight: (height: number) => string;
export declare const ModalContainer: React.FC<{
readonly onEscape: () => void;
readonly onOutsideClick: () => void;
readonly children: React.ReactNode;
readonly noZIndex?: boolean;
}>;