import { Props } from './types'; /** * 组件名称 */ export declare const name = "me-text-animation"; /** * 类型枚举 */ export declare const typeGroup: { /** * 默认 */ default: string; /** * 边框 */ border: string; options(): { value: string; }[]; some(value: unknown): boolean; }; /** * 容器字体大小 */ export declare const viewBoxSize = 50; /** * 合并默认和传参 */ export declare const mergeDefaultWithProps: (param: Props) => Required;