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