import { BigNumber } from "bignumber.js"; import { RangedChainObject } from "./RangedChainObject"; import { TokenAllowance } from "./TokenAllowance"; import { TokenMintAllowance } from "./TokenMintAllowance"; import { UserAlias } from "./UserAlias"; import { TokenMintStatus } from "./common"; export declare class TokenMintAllowanceRequest extends RangedChainObject { static INDEX_KEY: string; collection: string; category: string; type: string; additionalKey: string; timeKey: string; grantedTo: UserAlias; totalKnownMintAllowancesCount: BigNumber; created: number; grantedBy: UserAlias; quantity: BigNumber; state: TokenMintStatus; id: string; uses: BigNumber; expires?: number; epoch: string; requestId(): string; fulfillmentKey(): string; fulfill(instance: BigNumber): [TokenMintAllowance, TokenAllowance]; } //# sourceMappingURL=TokenMintAllowanceRequest.d.ts.map