import type { NonDeletedExcalidrawElement } from '@excalidraw/excalidraw/element/types'; type AnimateOptions = { startMs?: number; pointerImg?: string; pointerWidth?: string; pointerHeight?: string; }; export declare const animateSvg: (svg: SVGSVGElement, elements: readonly NonDeletedExcalidrawElement[], options?: AnimateOptions) => { finishedMs: number; }; export declare const getBeginTimeList: (svg: SVGSVGElement) => number[]; export {};