import { LismComponentProps } from '../../Lism/Lism'; import { IconProps } from './getProps'; import { ElementType, ReactNode, SVGAttributes, ImgHTMLAttributes } from 'react'; type IconElementProps = SVGAttributes & ImgHTMLAttributes; type IconComponentProps = LismComponentProps & IconProps & IconElementProps; export default function Icon({ children, ...props }: IconComponentProps & { children?: ReactNode; }): import("react").JSX.Element; export {};