import { type SVGProps } from 'react'; import { type ThemeVariant } from '../../theme'; export interface DIProps extends Omit, 'ref'> { size?: number; variant?: ThemeVariant; colorMode?: 'light' | 'dark' | 'auto'; /** Colour of the "I" glyph. */ primaryColor?: string; /** Colour of the "D" glyph. */ secondaryColor?: string; } /** * DI glyph mark. * * Uses the same public API and semantic color mapping as AI: * primaryColor styles the "I", secondaryColor styles the "D". */ export declare const DI: import("react").ForwardRefExoticComponent>; export default DI;