export * from './svgo.js'; /** * If you write a tool on top of svgo you might need a way to load svgo config. * You can also specify relative or absolute path and customize current working * directory. * * @type {(configFile?: T, cwd?: string) => Promise} */ export declare const loadConfig: (configFile?: T, cwd?: string) => Promise; /** * The core of SVGO. * * @param {string} input * @param {import('./svgo.js').Config=} config * @returns {import('./svgo.js').Output} */ export declare const optimize: (input: string, config?: import('./svgo.js').Config | undefined) => import('./svgo.js').Output;