import { IconLibrary, IconType, PageType } from '../../utils/icon-utils'; type IconProps = { icon: string; iconType?: IconType; className?: string; color?: string; colorLight?: string; colorDark?: string; overrideColor?: boolean; size?: number; overrideSize?: boolean; iconLibrary?: IconLibrary; basePath?: string; pageType?: PageType; }; declare const Icon: ({ icon, iconType, color, colorLight, colorDark, size, className, iconLibrary, basePath, pageType, overrideColor, overrideSize, }: IconProps) => import("react/jsx-runtime").JSX.Element | null; export { Icon }; export type { IconProps }; //# sourceMappingURL=icon.d.ts.map