/** * Represents a localized string map from the string key to the localized string or a function returns localized string */ export declare type LocalizedStrings = { [key in T]?: V | (() => V); }; /** * Localized string key for OK button */ export declare type OkButtonStringKey = 'buttonNameOK'; /** * Localized string key for Cancel button */ export declare type CancelButtonStringKey = 'buttonNameCancel'; /** * Localized string key for Cancel button menu splitter. * No need to localize this one as it will be replaced with a horizontal line */ export declare type MenuItemSplitterKey0 = '-';