import { type Coin } from '@cosmjs/proto-signing'; import z from 'zod'; type InitialPaymentParams = { amount: Coin; userClaimCollection: string; }; export declare const InitialPaymentParamsSchema: z.ZodObject<{ amount: z.ZodObject<{ amount: z.ZodString; denom: z.ZodString; }, z.z.core.$strip>; userAddress: z.ZodString; granteeAddress: z.ZodString; userClaimCollection: z.ZodString; }, z.z.core.$strip>; export declare enum IntentStatus { ACTIVE = 0, FULFILLED = 1, EXPIRED = 2, UNRECOGNIZED = -1 } export type { InitialPaymentParams }; //# sourceMappingURL=types.d.ts.map