import { AnimationBase, AnimationProperties } from '../AnimationBase'; export interface SquashProperties extends AnimationProperties { direction?: 'left' | 'right' | 'up' | 'down'; fade?: boolean; } export declare class Squash extends AnimationBase { type: string; constructor(properties?: SquashProperties); }