import { IModal, ModalType } from '@qodly/shared'; interface IOpenModalPayload extends Omit { type?: ModalType; } interface IOpenModalReturnValue { confirmed?: boolean; options?: Record; } export declare const openModal: import('@reduxjs/toolkit').AsyncThunk; export {};