import * as React from 'react'; declare type Props = { appearance?: 'medium' | 'large'; hasHeader?: boolean; onClose: () => void; title?: string; helpText?: string; helpLink?: string; children?: React.ReactNode; isScrollable?: boolean; contentRef?: (el: React.ReactNode) => void; question?: { text: string; link?: string; }; footer?: { left?: React.ReactNode; right?: React.ReactNode; }; }; declare class Modal extends React.Component { render(): JSX.Element; } export default Modal;