import { ConfigConsumerProps } from "antd/es/config-provider"; export interface GlobalProviderProps { localeUtils?: any; } export declare type JhConsumerProps = ConfigConsumerProps & GlobalProviderProps; /** * 组件的属性类型 */ export declare const PROP_TYPES: { /** * 下拉框 */ SELECT: string; /** * 下拉框,且可自定义输入 */ SELECT_INPUT: string; /** * 多选 下拉框 */ SELECT_MULTI: string; /** * 文本 */ TEXT: string; /** * 数字 */ NUMBER: string; /** * 勾选 */ CHECKBOX: string; };