import type { V2Store } from '../v2/store-facade.js'; import type { BindingResult, Harness } from './types.js'; /** Most recently bound project among sessions sharing this workspace cwd. */ export declare function lastProjectForWorkspace(store: V2Store, cwd: string): string | null; export interface ResolveBindingInput { store: V2Store; sessionId: string; harness: Harness; cwd?: string; namedProject?: string; deviceId?: string; } export declare function resolveBinding(input: ResolveBindingInput): BindingResult;