import { TypeInt8 } from '../types/type-int8'; import { Primitive } from './primitive'; export declare class Int8 extends Primitive { type: typeof TypeInt8; toInt(): number | null; toJS(): number | null; }