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