import { default as React } from 'react'; export interface DisplayIconProps { text: string; Icon: React.FC>; label?: string; className?: string; } declare function DisplayIcon({ text, Icon, label, className, ...props }: Readonly): React.JSX.Element; export default DisplayIcon;