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