/** * if string passed then parse the string to json else if throw error for all other types unless it is not a valid json object. * @param str - string to check. */ export declare const getValidJson: (str: string | object) => object;