import { ReactElement } from 'react'; import localeZh from '../lang/zh-CN.json'; type MessageFormatPrimitiveValue = string | number | boolean | null | undefined; type MessageFormatValues = Record; export type MessageType = keyof typeof localeZh; export type MessageFormater = (message: MessageType | string, values?: MessageFormatValues) => string; export default function useFormatMessage(): MessageFormater; export {};