import React from 'react'; export interface ModalRef { close: (result: T) => void; dismiss: (result?: T) => void; modalElement: HTMLIxModalElement | null; } export declare const Modal: React.ForwardRefExoticComponent<{ children?: React.ReactNode | undefined; } & React.RefAttributes>;