import { LroEngineOptions } from "./models.js"; import { LongRunningOperation } from "../../http/models.js"; import { PollOperationState } from "../pollOperation.js"; import { Poller } from "../poller.js"; /** * The LRO Engine, a class that performs polling. */ export declare class LroEngine> extends Poller { private config; constructor(lro: LongRunningOperation, options?: LroEngineOptions); /** * The method used by the poller to wait before attempting to update its operation. */ delay(): Promise; } //# sourceMappingURL=lroEngine.d.ts.map