import type { PrototypeStruct } from '../index.js';
interface FirstItem<T> {
    firstItem(): T | undefined;
}
export declare const firstItem: PrototypeStruct;
declare global {
    interface Array<T> extends FirstItem<T> {
    }
}
export {};
//# sourceMappingURL=first-item.d.ts.map