import { InjectionModeType } from './injection-mode';
import { LifetimeType } from './lifetime';
import { GlobWithOptions } from './list-modules';
import { LoadModulesOptions } from './load-modules';
import { BuildResolverOptions, Constructor, Resolver } from './resolvers';
/**
 * The container returned from createContainer has some methods and properties.
 * @interface AwilixContainer
 */
export interface AwilixContainer<Cradle extends object = any> {
    /**
     * Options the container was configured with.
     */
    options: ContainerOptions;
    /**
     * The proxy injected when using `PROXY` injection mode.
     * Can be used as-is.
     */
    readonly cradle: Cradle;
    /**
     * Getter for the rolled up registrations that merges the container family tree.
     */
    readonly registrations: RegistrationHash;
    /**
     * Resolved modules cache.
     */
    readonly cache: Map<string | symbol, CacheEntry>;
    /**
     * Creates a scoped container with this one as the parent.
     */
    createScope<T extends object = object>(): AwilixContainer<Cradle & T>;
    /**
     * Used by `util.inspect`.
     */
    inspect(depth: number, opts?: any): string;
    /**
     * Binds `lib/loadModules` to this container, and provides
     * real implementations of it's dependencies.
     *
     * Additionally, any modules using the `dependsOn` API
     * will be resolved.
     *
     * @see src/load-modules.ts documentation.
     */
    loadModules<ESM extends boolean = false>(globPatterns: Array<string | GlobWithOptions>, options?: LoadModulesOptions<ESM>): ESM extends false ? this : Promise<this>;
    /**
     * Adds a single registration that using a pre-constructed resolver.
     */
    register<T>(name: string | symbol, registration: Resolver<T>): this;
    /**
     * Pairs resolvers to registration names and registers them.
     */
    register(nameAndRegistrationPair: NameAndRegistrationPair<Cradle>): this;
    /**
     * Resolves the registration with the given name.
     *
     * @param  {string} name
     * The name of the registration to resolve.
     *
     * @return {*}
     * Whatever was resolved.
     */
    resolve<K extends keyof Cradle>(name: K, resolveOptions?: ResolveOptions): Cradle[K];
    /**
     * Resolves the registration with the given name.
     *
     * @param  {string} name
     * The name of the registration to resolve.
     *
     * @return {*}
     * Whatever was resolved.
     */
    resolve<T>(name: string | symbol, resolveOptions?: ResolveOptions): T;
    /**
     * Checks if the registration with the given name exists.
     *
     * @param {string | symbol} name
     * The name of the registration to resolve.
     *
     * @return {boolean}
     * Whether or not the registration exists.
     */
    hasRegistration(name: string | symbol): boolean;
    /**
     * Recursively gets a registration by name if it exists in the
     * current container or any of its' parents.
     *
     * @param name {string | symbol} The registration name.
     */
    getRegistration<K extends keyof Cradle>(name: K): Resolver<Cradle[K]> | null;
    /**
     * Recursively gets a registration by name if it exists in the
     * current container or any of its' parents.
     *
     * @param name {string | symbol} The registration name.
     */
    getRegistration<T = unknown>(name: string | symbol): Resolver<T> | null;
    /**
     * Given a resolver, class or function, builds it up and returns it.
     * Does not cache it, this means that any lifetime configured in case of passing
     * a resolver will not be used.
     *
     * @param {Resolver|Class|Function} targetOrResolver
     * @param {ResolverOptions} opts
     */
    build<T>(targetOrResolver: ClassOrFunctionReturning<T> | Resolver<T>, opts?: BuildResolverOptions<T>): T;
    /**
     * Disposes this container and it's children, calling the disposer
     * on all disposable registrations and clearing the cache.
     * Only applies to registrations with `SCOPED` or `SINGLETON` lifetime.
     */
    dispose(): Promise<void>;
}
/**
 * Optional resolve options.
 */
export interface ResolveOptions {
    /**
     * If `true` and `resolve` cannot find the requested dependency,
     * returns `undefined` rather than throwing an error.
     */
    allowUnregistered?: boolean;
}
/**
 * Cache entry.
 */
export interface CacheEntry<T = any> {
    /**
     * The resolver that resolved the value.
     */
    resolver: Resolver<T>;
    /**
     * The resolved value.
     */
    value: T;
}
/**
 * Register a Registration
 * @interface NameAndRegistrationPair
 */
export type NameAndRegistrationPair<T> = {
    [U in keyof T]?: Resolver<T[U]>;
};
/**
 * Function that returns T.
 */
export type FunctionReturning<T> = (...args: Array<any>) => T;
/**
 * A class or function returning T.
 */
export type ClassOrFunctionReturning<T> = FunctionReturning<T> | Constructor<T>;
/**
 * The options for the createContainer function.
 */
export interface ContainerOptions {
    require?: (id: string) => any;
    injectionMode?: InjectionModeType;
    strict?: boolean;
}
/**
 * Contains a hash of registrations where the name is the key.
 */
export type RegistrationHash = Record<string | symbol | number, Resolver<any>>;
export type ResolutionStack = Array<{
    name: string | symbol;
    lifetime: LifetimeType;
}>;
/**
 * Creates an Awilix container instance.
 *
 * @param {Function} options.require The require function to use. Defaults to require.
 *
 * @param {string} options.injectionMode The mode used by the container to resolve dependencies.
 * Defaults to 'Proxy'.
 *
 * @param {boolean} options.strict True if the container should run in strict mode with additional
 * validation for resolver configuration correctness. Defaults to false.
 *
 * @return {AwilixContainer<T>} The container.
 */
export declare function createContainer<T extends object = any>(options?: ContainerOptions): AwilixContainer<T>;