import * as React from 'react'; export type GenericIconProps = { icon: string | React.ReactNode; srcSet?: string; rawContent?: string; size?: string; color?: string; alt?: string; className?: string; }; export declare function GenericIcon({ icon, srcSet, rawContent, size, color, alt, className }: GenericIconProps): string | number | bigint | boolean | React.JSX.Element | Iterable | Promise | React.ReactElement> | React.ReactPortal | null | undefined> | null | undefined;