import type { InferSchema } from '../schema-types.js'; import { type paginationQuerySchema } from './pagination.js'; export declare const entryResponseSchema: { readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["id", "transaction_id", "account_id", "direction", "amount_minor", "currency", "created_at"]; readonly properties: { readonly id: { readonly type: "string"; readonly format: "uuid"; }; readonly transaction_id: { readonly type: "string"; readonly format: "uuid"; }; readonly account_id: { readonly type: "string"; readonly format: "uuid"; }; readonly direction: { readonly type: "string"; readonly enum: readonly ["DEBIT", "CREDIT"]; }; readonly amount_minor: { readonly type: "string"; }; readonly currency: { readonly type: "string"; }; readonly created_at: { readonly type: "string"; readonly format: "date-time"; }; }; }; export declare const entriesPageResponseSchema: { readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["data", "next_cursor"]; readonly properties: { readonly data: { readonly type: "array"; readonly items: { readonly type: "object"; readonly additionalProperties: false; readonly required: readonly ["id", "transaction_id", "account_id", "direction", "amount_minor", "currency", "created_at"]; readonly properties: { readonly id: { readonly type: "string"; readonly format: "uuid"; }; readonly transaction_id: { readonly type: "string"; readonly format: "uuid"; }; readonly account_id: { readonly type: "string"; readonly format: "uuid"; }; readonly direction: { readonly type: "string"; readonly enum: readonly ["DEBIT", "CREDIT"]; }; readonly amount_minor: { readonly type: "string"; }; readonly currency: { readonly type: "string"; }; readonly created_at: { readonly type: "string"; readonly format: "date-time"; }; }; }; }; readonly next_cursor: { readonly type: "string"; readonly nullable: true; }; }; }; export type ListEntriesQuery = InferSchema; export type EntryResponse = InferSchema; export type EntriesPageResponse = InferSchema; //# sourceMappingURL=entries.d.ts.map