import React from 'react'; import { SvgIconProps } from '@mui/material'; import { IconNameProp } from './icon.definitions'; /** * @interface IconProps * @description Base definition of SkodaFlow Icon */ export interface IconProps extends SvgIconProps { /** * Name of the icon that should be used. Alternatively, provide name in the className property */ name?: IconNameProp; /** * Style of vectors, regular (stroke) or filled format * @default 'regular' */ iconStyle?: 'regular' | 'filled'; } /** * SkodaFlow Icon component * ! usage of component is not recommended as it increases bundle size */ export declare const Icon: React.FC;