import { Int64 } from "../values/int64";
import { BasePrimitive } from "./base-primitive";
export declare class TypeOfInt64 extends BasePrimitive<Int64> {
    name: string;
    create(value: string | null): Int64;
}
export declare const TypeInt64: TypeOfInt64;
