import { IterableX } from '../../iterable/iterablex.js'; import { OptionalFindOptions } from '../../iterable/findoptions.js'; /** * @ignore */ export declare function singleProto(this: IterableX, options?: OptionalFindOptions): T | undefined; declare module '../../iterable/iterablex' { interface IterableX { single: typeof singleProto; } }