import type { FC } from "react"; export interface LanguageResources { symbolUnsupportedErrorMessage?: string; } export interface ColorResources { /** * Color value for error text, in any valid CSS format. */ errorForeground?: string; /** * Color value for error text background, in any valid CSS format. */ errorBackground?: string; } export declare const DEFAULT_COLORS: ColorResources; export interface UnsupportedSymbolProps { languageResources?: LanguageResources; colorResources?: ColorResources; } declare const UnsupportedSymbol: FC; export default UnsupportedSymbol;