import React from 'react'; import { SvgIconProps } from '@mui/material'; export interface FlowIconProps extends SvgIconProps { /** * SVG of Flow icon in string, e.g. ActionsIcons.Heart.stroke */ source?: string; } /** * Renders Flow svg icon in string as @mui SvgIcon */ export declare const FlowIcon: React.FC;