import { MessageFormatElement } from "react-intl"; export declare type Messages = Record | Record; /** * A interface for providing text to a widget that can be localized. */ export interface Text { /** If your application isn't localized this is a raw display string. Not * recommended. */ displayText?: string; /** The ID of the message in a messages.json file. */ messageId?: string; /** Values that are replacements in the ICU message. */ messageValues?: { [name: string]: string; }; }