import { default as React } from 'react'; import { PolymorphicPropsWithRef } from '../../utilities/polymorphism/polymorphism.js'; import { IconVariant } from './types.js'; type IconComponentProps = PolymorphicPropsWithRef; export type IconComponent = ((props: IconComponentProps) => React.ReactElement | null) & { displayName?: string; }; export declare const Icon: IconComponent; export {};