export interface ILocalizableJSON { (locale: string): any; isLocalizableJSON: boolean; strName?: string; } export declare function localizableJSON(strName: string): ILocalizableJSON; export declare function isLocalizableJSON(val: any): boolean; export declare function resolveLocalizableJSON(json: any, locale?: string): any;