import { EFrom } from '../../general';
import { ENatipaySaleChannel } from '../../natipay';
import { IFee } from '../interfaces';
export declare class FeeEntity implements IFee {
type: EFrom | ENatipaySaleChannel;
value: number;
constructor(data?: Partial<FeeEntity>);
}