import { AnalyseSVGStructureOptions, AnalyseSVGStructureResult } from './analyse/types.js'; import { SVG } from './index.js'; import '@iconizza/types'; import '@iconizza/utils/lib/customisations/defaults'; /** * Find all IDs, links, which elements use palette, which items aren't used * * Before running this function run cleanup functions to change inline style to attributes and fix attributes */ declare function analyseSVGStructure(svg: SVG, options?: AnalyseSVGStructureOptions): AnalyseSVGStructureResult; export { analyseSVGStructure };