import { TextAnimationBase, TextAnimationProperties } from '../TextAnimationBase'; export interface TextScaleProperties extends TextAnimationProperties { axis?: 'x' | 'y' | 'both'; xAnchor?: number | string; yAnchor?: number | string; } export declare class TextScale extends TextAnimationBase { type: string; constructor(properties?: TextScaleProperties); }