import { default as React } from 'react'; import { SvgIcon } from '@mui/material'; /** * Drop-in replacement for createSvgIcon that avoids MUI barrel circular deps. * * @example * export const ArrowCircleDown = createCustomIcon( * <> * * , * 'ArrowCircleDown', * '0 0 16 16' * ); */ export declare function createCustomIcon(children: React.ReactNode, displayName: string, viewBox?: string): typeof SvgIcon;