import { type MutationCtx } from "./_generated/server.js"; import { type Config } from "./shared.js"; export declare const MAX_POSSIBLE_PARALLELISM = 200; export declare const MAX_PARALLELISM_SOFT_LIMIT = 100; export declare const update: import("convex/server").RegisteredMutation<"public", { logLevel?: "DEBUG" | "TRACE" | "INFO" | "REPORT" | "WARN" | "ERROR" | undefined; maxParallelism?: number | undefined; }, Promise>; export declare function validateConfig(config: Partial): void; export declare function getOrUpdateGlobals(ctx: MutationCtx, config?: Partial): Promise<{ _id: import("convex/values").GenericId<"globals">; _creationTime: number; logLevel: "DEBUG" | "TRACE" | "INFO" | "REPORT" | "WARN" | "ERROR"; maxParallelism: number; }>; //# sourceMappingURL=config.d.ts.map