import { type Theme } from '../../../../theme'; import { type JsonValue, type TypeInfo } from '../../../types'; /** * Возвращает информацию о типе данных * @param {JsonValue} value - JSON значение * @param {Theme} theme - Тема * @returns {TypeInfo} - Иконка, цвет и тип данных */ export declare const getTypeInfo: (value: JsonValue, theme: Theme) => TypeInfo;