import { Type } from "./type";
/**
 * @hidden
 */
export interface ISupportsAnimation {
    isAnimationActive(): boolean;
    getAnimationIdleVersionNumber(): number;
    queueForAnimationIdle(a: () => void, b: number): void;
}
/**
 * @hidden
 */
export declare let ISupportsAnimation_$type: Type;
