import { z } from 'zod'; export declare const paginationSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const createBankBilletSchema: z.ZodObject<{ amount: z.ZodNumber; financial_account_uid: z.ZodString; code: z.ZodString; scheduled_to: z.ZodOptional; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: string; amount: number; financial_account_uid: string; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }, { code: string; amount: number; financial_account_uid: string; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }>; export declare const listBankBilletsSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const getBankBilletSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const createPixSchema: z.ZodObject<{ financial_account_uid: z.ZodString; qrcode: z.ZodString; amount: z.ZodOptional; scheduled_to: z.ZodOptional; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; identifier: z.ZodOptional; }, "strip", z.ZodTypeAny, { financial_account_uid: string; qrcode: string; amount?: number | undefined; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; identifier?: string | undefined; }, { financial_account_uid: string; qrcode: string; amount?: number | undefined; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; identifier?: string | undefined; }>; export declare const listPixSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const getPixSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const createDarfSchema: z.ZodObject<{ amount: z.ZodNumber; financial_account_uid: z.ZodString; calculation_date: z.ZodOptional; expire_at: z.ZodOptional; reference_number: z.ZodOptional; taxpayer_number: z.ZodOptional; tax_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: number; financial_account_uid: string; calculation_date?: string | undefined; expire_at?: string | undefined; reference_number?: string | undefined; taxpayer_number?: string | undefined; tax_code?: string | undefined; }, { amount: number; financial_account_uid: string; calculation_date?: string | undefined; expire_at?: string | undefined; reference_number?: string | undefined; taxpayer_number?: string | undefined; tax_code?: string | undefined; }>; export declare const listDarfsSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const getDarfSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const taxKindSchema: z.ZodEnum<["itbi", "icms", "iss", "iptu", "fgts", "dare"]>; export declare const createTaxSchema: z.ZodObject<{ amount: z.ZodNumber; financial_account_uid: z.ZodString; code: z.ZodString; kind: z.ZodEnum<["itbi", "icms", "iss", "iptu", "fgts", "dare"]>; scheduled_to: z.ZodOptional; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: string; amount: number; financial_account_uid: string; kind: "itbi" | "icms" | "iss" | "iptu" | "fgts" | "dare"; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }, { code: string; amount: number; financial_account_uid: string; kind: "itbi" | "icms" | "iss" | "iptu" | "fgts" | "dare"; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }>; export declare const listTaxesSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const getTaxSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const createUtilitySchema: z.ZodObject<{ amount: z.ZodNumber; financial_account_uid: z.ZodString; code: z.ZodString; scheduled_to: z.ZodOptional; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: string; amount: number; financial_account_uid: string; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }, { code: string; amount: number; financial_account_uid: string; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }>; export declare const listUtilitiesSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const getUtilitySchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const listBatchesSchema: z.ZodObject<{ page: z.ZodOptional; per_page: z.ZodOptional; }, "strip", z.ZodTypeAny, { page?: number | undefined; per_page?: number | undefined; }, { page?: number | undefined; per_page?: number | undefined; }>; export declare const getBatchSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const approveBatchSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const reproveBatchSchema: z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>; export declare const createBankBilletBatchSchema: z.ZodObject<{ financial_account_uid: z.ZodString; payments: z.ZodArray; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }, { code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }>, z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>]>, "many">; }, "strip", z.ZodTypeAny, { financial_account_uid: string; payments: ({ code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; } | { uid: string; })[]; }, { financial_account_uid: string; payments: ({ code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; } | { uid: string; })[]; }>; export declare const createPixBatchSchema: z.ZodObject<{ financial_account_uid: z.ZodString; payments: z.ZodArray; scheduled_to: z.ZodOptional; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; identifier: z.ZodOptional; }, "strip", z.ZodTypeAny, { qrcode: string; amount?: number | undefined; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; identifier?: string | undefined; }, { qrcode: string; amount?: number | undefined; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; identifier?: string | undefined; }>, z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>]>, "many">; }, "strip", z.ZodTypeAny, { financial_account_uid: string; payments: ({ qrcode: string; amount?: number | undefined; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; identifier?: string | undefined; } | { uid: string; })[]; }, { financial_account_uid: string; payments: ({ qrcode: string; amount?: number | undefined; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; identifier?: string | undefined; } | { uid: string; })[]; }>; export declare const createDarfBatchSchema: z.ZodObject<{ financial_account_uid: z.ZodString; payments: z.ZodArray; expire_at: z.ZodOptional; reference_number: z.ZodOptional; taxpayer_number: z.ZodOptional; tax_code: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: number; calculation_date?: string | undefined; expire_at?: string | undefined; reference_number?: string | undefined; taxpayer_number?: string | undefined; tax_code?: string | undefined; }, { amount: number; calculation_date?: string | undefined; expire_at?: string | undefined; reference_number?: string | undefined; taxpayer_number?: string | undefined; tax_code?: string | undefined; }>, z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>]>, "many">; }, "strip", z.ZodTypeAny, { financial_account_uid: string; payments: ({ amount: number; calculation_date?: string | undefined; expire_at?: string | undefined; reference_number?: string | undefined; taxpayer_number?: string | undefined; tax_code?: string | undefined; } | { uid: string; })[]; }, { financial_account_uid: string; payments: ({ amount: number; calculation_date?: string | undefined; expire_at?: string | undefined; reference_number?: string | undefined; taxpayer_number?: string | undefined; tax_code?: string | undefined; } | { uid: string; })[]; }>; export declare const createTaxBatchSchema: z.ZodObject<{ financial_account_uid: z.ZodString; payments: z.ZodArray; scheduled_to: z.ZodOptional; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: string; amount: number; kind: "itbi" | "icms" | "iss" | "iptu" | "fgts" | "dare"; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }, { code: string; amount: number; kind: "itbi" | "icms" | "iss" | "iptu" | "fgts" | "dare"; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }>, z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>]>, "many">; }, "strip", z.ZodTypeAny, { financial_account_uid: string; payments: ({ code: string; amount: number; kind: "itbi" | "icms" | "iss" | "iptu" | "fgts" | "dare"; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; } | { uid: string; })[]; }, { financial_account_uid: string; payments: ({ code: string; amount: number; kind: "itbi" | "icms" | "iss" | "iptu" | "fgts" | "dare"; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; } | { uid: string; })[]; }>; export declare const createUtilityBatchSchema: z.ZodObject<{ financial_account_uid: z.ZodString; payments: z.ZodArray; external_id: z.ZodOptional; custom_data: z.ZodOptional>; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }, { code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; }>, z.ZodObject<{ uid: z.ZodString; }, "strip", z.ZodTypeAny, { uid: string; }, { uid: string; }>]>, "many">; }, "strip", z.ZodTypeAny, { financial_account_uid: string; payments: ({ code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; } | { uid: string; })[]; }, { financial_account_uid: string; payments: ({ code: string; amount: number; scheduled_to?: string | undefined; external_id?: string | undefined; custom_data?: Record | undefined; tags?: string[] | undefined; } | { uid: string; })[]; }>; //# sourceMappingURL=schemas.d.ts.map