import { KVClient } from "."; import { ServiceResponseDto } from "../../types/serviceResponse"; export type ErrorCodes = "gatewayError" | "networkError"; export declare function set(this: KVClient, key: string, data: T, mode?: "replace" | "merge"): Promise>;