import { TupleItem } from '@ton/core';
import { IntTree } from '../trees';
export interface IntStrategy {
    generateTree: () => IntTree;
}
export declare function generateIntTree(bits: number, signed: boolean, fixtures?: TupleItem[]): IntTree;
