import { ITagNode } from 'svg-vdom'; import { IAnimateAttr } from '../../typings'; export declare const getAnimateAttr: (node: ITagNode) => IAnimateAttr[]; export declare const checkAnimateAttr: (animateAttrs: IAnimateAttr[], name: string, condition?: (v: string) => boolean) => boolean; export declare const findAnimateAttr: (animateAttrs: IAnimateAttr[], name: string) => IAnimateAttr[];