import React from 'react'; import { SvgIconProps } from '@mui/material'; export interface IconDefinition { /** * Name of the Icon, e.g. 'arrow-left' */ name: string; /** * Alternative names, e.g. ['left'] */ altNames: string[]; /** * Stroke (regular) component */ component: React.FC; /** * Filled component */ componentFilled: React.FC; /** * Marks proxy component */ proxy?: boolean; } export declare const iconDefinitions: IconDefinition[]; export declare const availableIcons: string[]; export type IconNameProp = (typeof availableIcons)[number];