import { MutableRefObject } from 'react'; /** * Actions that can be taken from within the modal via instance context */ export interface LuiModalAsyncInstanceContextType { ownerRef: MutableRefObject; close: () => void; resolve: (value: any) => void; } /** * Provides access to resolving/closing to modal elements. */ export declare const LuiModalAsyncInstanceContext: import("react").Context;