export declare type OpenDialog = <DialogReturn = any, DialogProps = Record<string, any>>(src: string, props?: {
    disableOverlayClick?: boolean;
    maxWidth?: string;
    ariaLabel?: string;
} & DialogProps) => Promise<DialogReturn | null>;
