import { SVGProps } from 'react'; import { ICONS } from './const'; type IconName = (typeof ICONS)[number]; export type Props = { icon: IconName; title?: string; size?: number; } & SVGProps; declare const Icon: ({ icon, size, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export default Icon;