import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface FlipProperties extends AnimationProperties { xRotation?: number | string; yRotation?: number | string; xAnchor?: number | string; yAnchor?: number | string; backfaceVisible?: boolean; fade?: boolean; } export declare class Flip extends AnimationBase { type: string; constructor(properties?: FlipProperties); }