import { z } from "@medusajs/framework/zod"; export type AdminCreatePaymentRefundReasonType = z.infer; export declare const AdminCreatePaymentRefundReason: z.ZodObject<{ label: z.ZodString; code: z.ZodString; description: z.ZodOptional>; }, "strict", z.ZodTypeAny, { code: string; label: string; description?: string | null | undefined; }, { code: string; label: string; description?: string | null | undefined; }>; export type AdminUpdatePaymentRefundReasonType = z.infer; export declare const AdminUpdatePaymentRefundReason: z.ZodObject<{ label: z.ZodOptional; code: z.ZodOptional; description: z.ZodOptional>; }, "strict", z.ZodTypeAny, { description?: string | null | undefined; code?: string | undefined; label?: string | undefined; }, { description?: string | null | undefined; code?: string | undefined; label?: string | undefined; }>; /** * Parameters used to filter and configure the pagination of the retrieved refund reason. */ export declare const AdminGetRefundReasonsParams: z.ZodObject<{ fields: z.ZodOptional; } & { offset: z.ZodEffects>, number, unknown>; limit: z.ZodEffects>, number, unknown>; order: z.ZodOptional | z.ZodDefault>; with_deleted: z.ZodEffects, boolean | undefined, unknown>; } & { id: z.ZodOptional]>>; q: z.ZodOptional; created_at: z.ZodOptional]>>; updated_at: z.ZodOptional]>>; deleted_at: z.ZodOptional]>>; }, "strip", z.ZodTypeAny, { offset: number; limit: number; order?: string | undefined; id?: string | string[] | undefined; fields?: string | undefined; created_at?: any; updated_at?: any; deleted_at?: any; with_deleted?: boolean | undefined; q?: string | undefined; }, { order?: string | undefined; id?: string | string[] | undefined; fields?: string | undefined; created_at?: any; updated_at?: any; deleted_at?: any; offset?: unknown; limit?: unknown; with_deleted?: unknown; q?: string | undefined; }>; export type AdminGetRefundReasonsParamsType = z.infer; export declare const AdminGetRefundReasonParams: z.ZodObject<{ fields: z.ZodOptional; }, "strip", z.ZodTypeAny, { fields?: string | undefined; }, { fields?: string | undefined; }>; export type AdminGetRefundReasonParamsType = z.infer; //# sourceMappingURL=validators.d.ts.map