import type { DIconBaseProps } from './useIconDefinition'; import type { IconDefinition } from '@ant-design/icons-svg/es/types'; import React from 'react'; export interface DIconContextData { props?: Omit; className: (theme: DIconProps['dTheme']) => string; twoToneColor: (theme: DIconProps['dTheme']) => [string, string]; } export declare const DIconContext: React.Context; export interface DIconProps extends Omit { dTwoToneColor?: [string, string]; dIcon: IconDefinition; } export declare const DIcon: React.ForwardRefExoticComponent>;