import React from 'react'; export interface ModalViewProps extends React.HTMLAttributes { /** * Содержимое модального окна. */ children?: React.ReactNode; /** * Обработчик клика по кнопке "закрыть". */ onClose?: () => void; /** * WAI-ARIA атрибут кнопки "закрыть". */ closeButtonAriaLabel?: string; } /** * Визуальная часть модального окна. */ export declare const ModalView: React.ForwardRefExoticComponent>; //# sourceMappingURL=ModalView.d.ts.map