import { UInt64 } from '../UInt64'; /** * Rental Fees */ export declare class RentalFees { readonly effectiveRootNamespaceRentalFeePerBlock: UInt64; readonly effectiveChildNamespaceRentalFee: UInt64; readonly effectiveMosaicRentalFee: UInt64; /** * @param effectiveRootNamespaceRentalFeePerBlock - Absolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). * @param effectiveChildNamespaceRentalFee - Absolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). * @param effectiveMosaicRentalFee - bsolute amount. An amount of 123456789 (absolute) for a mosaic with divisibility 6 means 123.456789 (relative). */ constructor(effectiveRootNamespaceRentalFeePerBlock: UInt64, effectiveChildNamespaceRentalFee: UInt64, effectiveMosaicRentalFee: UInt64); }