/// <reference types="node" />
import { Ttimezone, UltipaPropertyType } from "../../types/types";
import { PROPERTY_TYPE } from "./commont";
export declare namespace SERIALIZE {
    function serialize(v: string | string[] | object, type: UltipaPropertyType, subTypes: UltipaPropertyType[], timezone: Ttimezone): Buffer;
    function base(in_v: string, type: PROPERTY_TYPE, timezone: Ttimezone): Buffer;
    function list(vs: string[], types: PROPERTY_TYPE[], timezone: Ttimezone): Buffer;
    function map(v: object, types: PROPERTY_TYPE[], timezone: Ttimezone): Buffer;
    function set(vs: string[], types: PROPERTY_TYPE[], timezone: Ttimezone): Buffer;
}
