import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function doWhileProto(this: IterableX, condition: () => boolean): IterableX; declare module '../../iterable/iterablex' { interface IterableX { doWhile: typeof doWhileProto; } }