import type { UseLocaleOptions, EleGlobalProvide, ComponentProps } from './types'; /** * 全局配置 hook */ export declare function useReceiver(): EleGlobalProvide; /** * 国际化 hook */ export declare function useLocale(options: UseLocaleOptions, props?: ComponentProps): { locale: import("vue").ComputedRef>; globalConfig: EleGlobalProvide; };