export type ClaimApiClaimTokensRequestPayload = {
    address: string;
    code: string;
    [key: string]: unknown;
};
export type ClaimApiClaimTokensResponse = {
    lovelaces: string;
    tokens: {
        [tokenId: string]: string;
    };
} & ({
    status: 'accepted';
    queue_position: number;
} | {
    status: 'queued';
    queue_position: number;
} | {
    status: 'claimed';
    tx_hash: string;
});
//# sourceMappingURL=api.d.ts.map