import { Hex } from "./hex"; import { ICharacter } from "./_character"; import { INumeric } from "./_numeric"; export declare class DecFloat34 { private value; constructor(); clone(): DecFloat34; set(value: INumeric | ICharacter | Hex | string | number): this; clear(): void; getRaw(): number; get(): string; }