export interface IntTree {
    current: () => bigint;
    simplify: () => boolean;
    complicate: () => boolean;
}
export declare function createIntTree(start: bigint, bits: number, signed: boolean, fixed?: boolean): IntTree;
