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 const loadConfig: (configFile?: T, cwd?: string) => Promise; export function optimize(input: string, config?: import("./svgo.js").Config | undefined): import("./svgo.js").Output;