import { SVGProps } from 'react'; interface IconScaleProps extends SVGProps { className?: string; } export default function IconScale({ className, ...rest }: IconScaleProps): import("react").JSX.Element; export {};