export interface Translations { [key: string]: string | Translations; } export interface IntlContextType { translations: Translations; } export declare const IntlContext: import("preact").Context;