import type { ApiKeyScope } from '@n8n/permissions'; export declare function publicApiRouteKey(method: string, pathStr: string): string; export declare function loadPublicControllerScopeMap(): Map; export declare function extractScopeFromEovHandlerChain(handlerChain: unknown[]): ApiKeyScope | undefined; export declare function resolvePublicApiImplementedScope(controllerScopes: Map, method: string, pathStr: string, eovHandlerScope?: ApiKeyScope): string | undefined;