interface ValidateOptions {
    allowObjects?: boolean;
}
declare const isJSON: (str: any, options?: ValidateOptions) => boolean;
export default isJSON;
