import { UltipaPropertyType } from "../../types/types";
import { PropertyType } from "../../proto/ultipa_pb";
export type PROPERTY_TYPE = UltipaPropertyType | typeof PropertyType;
export declare namespace TypeSupport {
    const list = true;
    const map = false;
    const set = true;
    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;
