export declare class ConfiguredItem { private _item; private _config; constructor(_item: T, _config: U); readonly item: T; readonly config: U; static resolveItem(config: any, notFoundValue?: any): T; static resolveConfig(config: any, notFoundValue?: any): U; }