import { ReactNode } from 'react'; export interface InfoModalProps { children?: ReactNode; className?: string; id?: string; onClose: React.ReactEventHandler; open: boolean; title: string | ReactNode; } /** * Can be used to build a modal with a well defined structure for child components * * @example * *
This is the main content for the info modal
*
* @see https://design.avayacloud.com/components/web/modal-web */ export declare const InfoModal: import('react').ForwardRefExoticComponent>;