import React from 'react'; export declare const getHeight: () => number; export type ModalShortcut = readonly [key: string, label: string] | { key: string; label: string; }; export declare const ModalFrame: React.FC<{ title: string; titleRight?: React.ReactNode; footer?: React.ReactNode; shortcuts?: readonly ModalShortcut[]; children: React.ReactNode; }>;