import { Int8 } from "../values/int8";
import { BasePrimitive } from "./base-primitive";
export declare class TypeOfInt8 extends BasePrimitive<Int8> {
    name: string;
    create(value: string | null): Int8;
}
export declare const TypeInt8: TypeOfInt8;
