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