/** * Test array includes * @param {Array} from * @param {Array} target */ export declare const includes: (from: any[], target: any[]) => boolean; /** * Compare array equality * @param {Array} from * @param {Array} target */ export declare const equals: (from: any[], target: any[]) => boolean;