/** * @module indicative-rules */ /** * Returns a boolean telling if value is a valid JSON string * or not. * * @example * ```js * const { is } = require('indicative') * * if (is.json("{ \"hello\": \"world\" }")) { * } * ``` */ export declare const json: (input: any) => boolean;