import * as z from 'zod'; import type { Api } from '../api'; declare const InputMessage: z.ZodUnion; payload: z.ZodObject<{ httpApiMessageId: z.ZodString; }, z.core.$strip>; }, z.core.$strip>, z.ZodObject<{ topic: z.ZodLiteral<"force-reset">; }, z.core.$strip>]>; declare const Config: z.ZodObject<{ namespace: z.ZodString; host: z.ZodString; workerId: z.ZodString; }, z.core.$strip>; export declare const SourceHttpApiHttpAck: (api: Api) => { new (config: any): { /** Used to orchestrate consumer retry */ isDestroying: boolean; nextMessageWaitTime: number; pendingProcessing: { messageId: string; resolve: VoidFunction; reject: (err: Error) => void; } | null; config: Promise>; getMessageLoop(): Promise; setStatus(status: "waiting" | "pending" | "error"): void; /** * Input is responsible for resolving promise that http api is waiting for */ onInput(message: z.infer): void; getMessage(): Promise; /** Overwritten in source-http-api */ buildGetMessageUrl(): Promise; /** Overwritten in source-http-api */ ackMessage(messageId: string): Promise; onDestroy(): void; api: Api; nodeConfig: unknown; messageZod: z.ZodUnion; payload: z.ZodObject<{ httpApiMessageId: z.ZodString; }, z.core.$strip>; }, z.core.$strip>, z.ZodObject<{ topic: z.ZodLiteral<"force-reset">; }, z.core.$strip>]>; getBaseUrls(): Promise>; getNodeEnvConfig(): import("../node").NodeEnvConfig; sendBuilder(inputMessage: import("../types").NodeMessage): import("../node").SendBuilder; handleMaybePromise(maybePromiseCb: () => (T | Promise), done: (err?: Error) => void): void; }; }; export {};