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