/** * @module indicative-rules */ /** * Returns a boolean telling, if value is an array or not. * * @example * ``` * const { is } = require('indicative') * * if (is.array([])) { * } * ``` */ export declare const array: (value: any) => boolean;