import { TypeInt32 } from "../types/type-int32"; import { Primitive } from "./primitive"; export declare class Int32 extends Primitive { type: typeof TypeInt32; toInt(): number | null; toJS(): number | null; }