import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetTransactionsRequest = { /** * Identifier of collection */ collection: string; /** * Filters of statistics */ filters?: string | undefined; }; /** @internal */ export declare const GetTransactionsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetTransactionsRequest$Outbound = { collection: string; filters?: string | undefined; }; /** @internal */ export declare const GetTransactionsRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace GetTransactionsRequest$ { /** @deprecated use `GetTransactionsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetTransactionsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetTransactionsRequest$Outbound` instead. */ type Outbound = GetTransactionsRequest$Outbound; } export declare function getTransactionsRequestToJSON(getTransactionsRequest: GetTransactionsRequest): string; export declare function getTransactionsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gettransactions.d.ts.map