import React from 'react'; import type { TDictShape } from '../../pro'; declare type Input = string | number | Input[]; export declare const Dict: (props: { /** * 对应枚举值 * @type Input = string | number | Input[]; */ value?: Input; /** 渲染形式 Badeg | Tag */ type?: 'badge' | 'tag'; /** 选项 */ options?: TDictShape['options']; /** * 严格模式, 将使用 === 来对比 value * 非严格模式下采用 == 对比 * @default false */ strict?: boolean; }) => React.JSX.Element; export {};