import { FeeReceiptStatus } from "@gala-chain/api"; import BigNumber from "bignumber.js"; import { GalaChainContext } from "../types"; export interface WriteChannelPaymentReceiptParams { year: string; month: string; day: string; feeCode: string; paidByUser: string; txId: string; quantity: BigNumber; status: FeeReceiptStatus; } export declare function writeChannelPaymentReceipt(ctx: GalaChainContext, data: WriteChannelPaymentReceiptParams): Promise; //# sourceMappingURL=writeChannelPaymentReceipt.d.ts.map