import { ENatipaySaleChannel } from '../..';
import { EAmountMode } from '../../../general';
import { EOperationType } from '../../../transaction';
import { EFeePayer } from '../../../transaction/enums/fee-payer.enum';
import { IFeeSaleChannel } from '../interfaces';
export declare class FeeSaleChannelEntity implements IFeeSaleChannel {
    amount: number;
    amountMode: EAmountMode;
    feePayer: EFeePayer;
    id: string;
    operationType: EOperationType;
    saleChannel: ENatipaySaleChannel;
    constructor(data?: Partial<FeeSaleChannelEntity>);
}
