import { PropertyType } from "../../proto/ultipa_pb";
import { ULTIPA } from "../../types";
export type PROPERTY_TYPE = ULTIPA.PropertyType | typeof PropertyType;
export declare namespace TypeSupport {
    const list = true;
    const map = false;
    function NotSupport(type: PROPERTY_TYPE): void;
}
export declare const SafeInt: (v: string) => number;
export declare const SafeFloat: (v: string) => number;
export declare const SafeBigInt: (v: string | number) => bigint;
