export interface UseContainerOptions { fallback?: boolean; fallbackOnErrors?: boolean; } export declare function useContainer(iocContainer: { get(someClass: any): any; }, options?: UseContainerOptions): void; export declare function getFromContainer(someClass: { new (...args: any[]): T; } | Function): T;