import type { Optional } from "@johnqh/types"; import { type NetworkClient } from "@johnqh/di"; import { type WildduckConfig } from "@johnqh/types"; import type { WildduckUpdateMessageRequest, WildduckUpdateMessageResponse, WildduckUserAuth } from "@johnqh/types"; interface UseWildduckUpdateMessageReturn { updateMessage: (userAuth: WildduckUserAuth, mailboxId: string, messageId: number, params: WildduckUpdateMessageRequest) => Promise; isLoading: boolean; error: Optional; clearError: () => void; } export declare const useWildduckUpdateMessage: (networkClient: NetworkClient, config: WildduckConfig, devMode?: boolean) => UseWildduckUpdateMessageReturn; export {}; //# sourceMappingURL=useWildduckUpdateMessage.d.ts.map