import { FeeGateCodes } from "@gala-chain/api"; import { GalaChainContext } from "../types"; export interface IExemptionForUser { user: string; feeCode: FeeGateCodes; } /** * @description * * Returns true if a given user is exempt from the given fee code. * * @param ctx * @param data * @returns Promise */ export declare function userExemptFromFees(ctx: GalaChainContext, data: IExemptionForUser): Promise; //# sourceMappingURL=userExemptFromFees.d.ts.map