export declare function convertPropertyValue(value: string | undefined): string | number | boolean | undefined; export declare function convertProperties(object?: any, options?: { stringifyObject?: boolean; stringifyArray?: boolean; parseString?: boolean; prefix?: string; }): any; interface NameValuePair { name?: string; value?: string; Name?: string; Value?: string; } export declare function convertNameValuePairs(data: NameValuePair[] | undefined, options?: { parseString?: boolean; prefix?: string; }): any; export declare function getTime(time: Date | string | number | undefined): number | undefined; /** * @description calculates the base64 sha256 hash of the * stringified object * @param object object to hash stringified version of */ export declare function sha256(object: object | string): string; export {};