import { AppDictItem } from "@knockout-js/api/ucenter";
import { SelectProps } from "antd";
export interface DictionarySelectProps extends SelectProps {
    /**
     * 字典dictCode
     */
    dictCode: string;
    /**
     * 应用code
     */
    appCode?: string;
    /**
     * 外部提供数据源
     */
    dataSource?: AppDictItem[];
    /**
     * changeValue=id: onChange的第一个参数值就为code
     */
    changeValue?: "id" | "code";
}
declare const _default: (props: DictionarySelectProps) => import("react/jsx-runtime").JSX.Element;
export default _default;
