import { AllowanceType, FulfillMintAllowanceDto, GrantAllowanceQuantity, TokenInstanceQueryKey } from "@gala-chain/api"; import BigNumber from "bignumber.js"; import { GalaChainContext } from "../types/GalaChainContext"; export interface InternalGrantAllowanceData { tokenInstance: TokenInstanceQueryKey; allowanceType: AllowanceType; quantities: Array; uses: BigNumber; expires?: number; uniqueKey: string; } export declare function requestMintAllowance(ctx: GalaChainContext, dto: InternalGrantAllowanceData): Promise; //# sourceMappingURL=requestMintAllowance.d.ts.map