import { IFeeFrom, IFeeSaleChannel, INatipayFee } from '../interfaces';
export declare class NatipayFeeEntity implements INatipayFee {
    from: IFeeFrom[];
    saleChannel: IFeeSaleChannel[];
    constructor(data?: Partial<NatipayFeeEntity>);
}
