export interface IAnimationGear { playing: boolean; frame: number; } export declare let isAnimationGear: (obj: any) => obj is IAnimationGear;