import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface PanProperties extends AnimationProperties { scope?: 'composition' | 'element'; startScale?: number | string; startX?: number | string; startY?: number | string; endScale?: number | string; endX?: number | string; endY?: number | string; } export declare class Pan extends AnimationBase { type: string; constructor(properties?: PanProperties); }