import type { SVGProps } from 'react'; import * as icons from '../icons'; export type IconType = keyof typeof icons; export declare const Icon: ({ icon, ...props }: { icon: IconType; } & SVGProps) => import("react").JSX.Element | null;