import * as React from 'react'; export interface ModalProps { id: string; title: string; subtitle?: string; description?: string; isUnbordered?: boolean; isBlock?: boolean; } export declare const Modal: React.FC;