import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetReconciliationItemsRequest = { /** * Blockchain name */ blockchain: models.Blockchain; /** * Only items with lastUpdatedAt after (inclusive) will be returned */ updatedAfterInclusive: Date; /** * Only items with lastUpdatedAt before (exclusive) will be returned */ updatedBeforeExclusive: Date; /** * Paging cursor */ continuation?: string | undefined; /** * The maximum number of results to be returned. If not specified, a predefined number is used. */ size?: number | undefined; }; /** @internal */ export declare const GetReconciliationItemsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetReconciliationItemsRequest$Outbound = { blockchain: string; updatedAfterInclusive: string; updatedBeforeExclusive: string; continuation?: string | undefined; size?: number | undefined; }; /** @internal */ export declare const GetReconciliationItemsRequest$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 GetReconciliationItemsRequest$ { /** @deprecated use `GetReconciliationItemsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetReconciliationItemsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetReconciliationItemsRequest$Outbound` instead. */ type Outbound = GetReconciliationItemsRequest$Outbound; } export declare function getReconciliationItemsRequestToJSON(getReconciliationItemsRequest: GetReconciliationItemsRequest): string; export declare function getReconciliationItemsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getreconciliationitems.d.ts.map