import type { INode } from 'svgson'; interface DataOptions { file: string; HAST: INode; svg: string; } /** * Get the template data. * * @param template The template name. * @param props The props. * @param props.file The file name. * @param props.HAST The HAST tree. * @param props.svg The SVG string. * @returns The template data. */ export declare const getTemplateData: (template: string, { file, HAST, svg }: DataOptions) => { replace: string; search: RegExp; }[]; export {};