import type { IRichText, ISymbol, IImage, IArc } from '@visactor/vrender-core'; import type { ILine, IPolygon } from '@visactor/vrender-core'; import type { ArcSegment, Segment } from '../../segment'; import type { Tag } from '../../tag'; import type { CommonMarkAreaAnimationType, MarkCommonLineAnimationType, MarkPointAnimationType, MarkerAnimationState, MarkerExitAnimation, MarkerUpdateAnimation } from '../type'; export declare function markCommonLineAnimate(line: Segment | ArcSegment, label: Tag | Tag[], animationconfig: any, state: MarkerAnimationState): void; export declare function markAreaAnimate(area: IPolygon, label: Tag | Tag[], animationconfig: any, state: MarkerAnimationState): void; export declare function markArcAreaAnimate(area: IArc, label: Tag | Tag[], animationconfig: any, state: MarkerAnimationState): void; export declare function markPointAnimate(lines: [Segment | ArcSegment, ILine], item: Tag | IRichText | ISymbol | IImage, animationconfig: any, state: MarkerAnimationState): void; export declare const DefaultUpdateMarkLineAnimation: MarkerUpdateAnimation; export declare const DefaultUpdateMarkAreaAnimation: MarkerUpdateAnimation; export declare const DefaultUpdateMarkPointAnimation: MarkerUpdateAnimation; export declare const DefaultExitMarkerAnimation: MarkerExitAnimation;