interface ToolsConfig {
    decimalPlaces: number;
}
declare class Tools {
    private readonly config;
    constructor(config: ToolsConfig);
    get decimal(): number;
    /**
     * Convert NANO/XDG/BAN to RAW
     * @param amount Amount in NANO/XDG/BAN (mega) to convert to RAW
     * @returns RAW amount
     */
    megaToRaw(amount: number): string;
    /**
     * Convert RAW to NANO/XDG/BAN
     * @param amount Amount in RAW to convert to NANO/XDG/BAN (mega)
     * @returns NANO/XDG/BAN amount
     */
    rawToMega(amount: number): string;
}
export { Tools };
