/** * Create svg sprite with symbols * * @param symbols {string[]} * @param inline {boolean} whether to inline the sprite * @returns {string} */ export declare function createSvgSprite(symbols: string[], id: string): string; /** * Create svg symbol from svg content * * @param svg {string} svg content * @param id {string} symbol id * * @returns {string} symbol */ export declare function createSvgSymbol(svg: string, id: string): string; /** * Get file path relative to baseDir * * @param moduleId {string} the module id of the file * @param baseDir {string} the base directory * * @returns {string} the relative file path */ export declare function getFilePath(moduleId: string, baseDir: string): string; /** * Get symbol id with template * * @param filePath {string} the file path * @param template {string} the symbolId template * * @returns {string} */ export declare function getSymbolId(filePath: string, template: string): string; /** * Check if the module id is a svg file path. * * @param moduleId {string} id to check * @returns {boolean} */ export declare function isSvgFilePath(moduleId: string): boolean;