import en from "./translations/en.json"; type Messages = typeof en; type MessageId = keyof Messages; export type IntlShape = { formatMessage(id: MessageId): string; }; export declare function useIntl(): IntlShape; export {};