import { Eq } from 'fp-ts/lib/Eq';
/**
* Similar to [R.edsWith](https://ramdajs.com/docs/#endsWith), but doesn't work with `string`s
*
* @since 0.1.2
*/
export declare function endsWith(E: Eq): {
(suffix: Array): (as: Array) => boolean;
(suffix: Array, as: Array): boolean;
};