export declare const jsonToString: (json: any) => string; export declare const stringToBoolean: (stringValue: string | undefined) => boolean; export declare function isPlainObject(value: any): boolean; export declare function isObject(value: any): boolean; export declare function isString(value: unknown): value is string;