import type * as z from 'zod'; import type { Api } from '../api'; declare const InputMessage: z.ZodObject<{ topic: z.ZodLiteral; payload: z.ZodObject<{ type: z.ZodLiteral; txLog: z.ZodObject<{ rootUnitId: z.ZodString; changes: z.ZodArray; owner: z.ZodString; volume: z.ZodNumber; unitId: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$loose>; }, z.core.$strip>; export declare const LedgerQuery: (api: Api) => { new (config: unknown): { onInput(message: z.infer): void; api: Api; nodeConfig: unknown; messageZod: z.ZodObject<{ topic: z.ZodLiteral; payload: z.ZodObject<{ type: z.ZodLiteral; txLog: z.ZodObject<{ rootUnitId: z.ZodString; changes: z.ZodArray; owner: z.ZodString; volume: z.ZodNumber; unitId: z.ZodString; }, z.core.$strip>>; }, z.core.$strip>; }, z.core.$loose>; }, z.core.$strip>; getBaseUrls(): Promise>; getNodeEnvConfig(): import("../node").NodeEnvConfig; sendBuilder(inputMessage: import("../types").NodeMessage): import("../node").SendBuilder; onDestroy?(): void | Promise; handleMaybePromise(maybePromiseCb: () => (T | Promise), done: (err?: Error) => void): void; }; }; export {};