/**
 * Check if a string is json
 * @param str The string to check
 * @returns A boolean if true the string is valid otherwise false
 */
declare const isJson: (str: string) => boolean;
export default isJson;
