import { IFee } from '../../transaction';
import { IGlobalSettingTaxes } from '../interfaces';
export declare class GlobalSettingTaxesEntity implements IGlobalSettingTaxes {
id: string;
fees: IFee[];
constructor(data?: Partial<GlobalSettingTaxesEntity>);
}