import type { HTMLAttributes, ReactElement, SVGProps } from 'react';
export declare const SmoothSvg: ({ className, children, width, height, style, svgProps, ...props }: {
className?: string;
children: ReactElement;
width: number;
height: number;
"aria-label": string;
svgProps?: SVGProps;
} & HTMLAttributes) => import("react/jsx-runtime").JSX.Element;