import { Int16 } from "../values/int16";
import { BasePrimitive } from "./base-primitive";
export declare class TypeOfInt16 extends BasePrimitive<Int16> {
    name: string;
    create(value: string | null): Int16;
}
export declare const TypeInt16: TypeOfInt16;
