export interface IntentRes { intentId: string; challenge: string; } export interface ClaimRes { rewardType: "coin" | "revive" | "item"; value: number | string; } export declare const createIntent: (token: string, rewardType: string, value?: number) => Promise; export declare const claimIntent: (token: string, intentId: string) => Promise;