/** @packageDocumentation * @module Tools */ import { BeDuration } from "@itwin/core-bentley"; import { Tool } from "@itwin/core-frontend"; /** Changes the [IModelApp.animationInterval]($frontend). Specify the interval in integer milliseconds; or pass any string not parseable as an integer to disable the animation interval callback. * @beta */ export declare class AnimationIntervalTool extends Tool { static toolId: string; static get minArgs(): number; static get maxArgs(): number; run(interval?: BeDuration): Promise; parseAndRun(...args: string[]): Promise; } //# sourceMappingURL=AnimationIntervalTool.d.ts.map