interface UseGetDictType { dictKey: string | undefined; dict?: Record; } declare function useGetDict({ dictKey, dict }: UseGetDictType): { dictData: any; }; export default useGetDict;