import { type ResolvedWorkspace, type WorkspaceAuthorizationPolicy, type WorkspaceCapabilityProfile, type WorkspaceMode } from "./workspace-router-model.js"; /** * Resolve the capability profile for a workspace binding attempt. * * In `repo_local` mode the default local profile is always returned. * In `daemon` mode the authorization policy is consulted; `null` means * the workspace is not authorized. */ export declare function resolveCapabilityProfile(input: { readonly mode: WorkspaceMode; readonly resolved: ResolvedWorkspace; readonly authorizationPolicy?: WorkspaceAuthorizationPolicy | undefined; }): Promise; //# sourceMappingURL=workspace-router-capability.d.ts.map