import { SVG } from "../svg/index.js"; /** * Removes clip path from SVG, which Figma and Penpot add to icons that might have overflowing elements. * Also removes mess generated by Penpot * * Function was originally designed for Figma only, but later added support for Penpot */ declare function removeFigmaClipPathFromSVG(svg: SVG): boolean; export { removeFigmaClipPathFromSVG };