import { PrototypeStruct } from '..';
export declare type EndsWithFn<T> = (needle: T[]) => boolean;
export declare const endsWith: PrototypeStruct;
declare global {
    interface Array<T> {
        endsWith: EndsWithFn<T>;
    }
}
//# sourceMappingURL=ends-with.d.ts.map