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