import * as react from 'react'; import { SVGAttributes } from 'react'; type MonogramColor = 'yellow' | 'black' | 'white'; interface MonogramProps extends SVGAttributes { /** * Fill color via `currentColor`. * - `yellow` — default on dark surfaces (#FFFF00) * - `black` — light-mode surfaces (#0A0A0A) * - `white` — on tinted or photographic backgrounds */ color?: MonogramColor; /** Height in px; width scales from the 130×143 viewBox. */ size?: number; /** Accessible name — rendered as `` and `aria-label`. */ title?: string; } declare const Monogram: react.ForwardRefExoticComponent<MonogramProps & react.RefAttributes<SVGSVGElement>>; export { Monogram, type MonogramColor, type MonogramProps };