import { ApplicationConfig } from '../app';
import { ContextCreator } from '../helpers';
import { InstanceWrapper, ContainerIoC } from '../core';
import { AccessResourceInterface, Type } from "../contracts";
import { ControllerType } from "../types";
export declare class AccessResourceContextCreator extends ContextCreator {
    private readonly container;
    private readonly config?;
    private moduleContext;
    constructor(container: ContainerIoC, config?: ApplicationConfig);
    create(instance: ControllerType, callback: (...args: unknown[]) => unknown, module: string, contextId?: import("../core").ContextId, inquirerId?: string): AccessResourceInterface[];
    createConcreteContext<T extends unknown[], R extends unknown[]>(metadata: T, contextId?: import("../core").ContextId, inquirerId?: string): R;
    getGuardInstance(metaType: Function | AccessResourceInterface, contextId?: import("../core").ContextId, inquirerId?: string): AccessResourceInterface | null;
    getInstanceByMetaType(metaType: Type<unknown>): InstanceWrapper | undefined;
    getGlobalMetadata<T extends unknown[]>(contextId?: import("../core").ContextId, inquirerId?: string): T;
}
//# sourceMappingURL=access-resource-context-creator.d.ts.map