import { Dict } from "../use/use-dict-define"; export declare function useDict(props: any, ctx: any, vModel?: string): { createComputedOptions: () => import("vue").ComputedRef; loadDict: (reload?: boolean) => Promise; reloadDict: () => Promise; clearDict: () => void; getDictData: () => any; getDict: () => any; watchValue: () => void; getValue: (item: any) => any; getLabel: (item: any) => any; getChildren: (item: any) => any; getColor: (item: any) => any; removePropValue: (item: any, prop: any) => void; curDict: Dict; };