/** * Runtime attestation (ADR 0005 H9). Declares the implementation status * of each runtime export in this module. See CONTRIBUTING.md § Module * attestations for the category definitions and the convention for * updating these when sync or rebrand changes the surface. */ export declare const MODULE_ATTESTATIONS: { readonly resolveDefaultAgentWorkspaceDir: "live"; readonly ensureAgentWorkspace: "live"; }; export type WorkspaceBootstrapFile = { filename: string; content: string; }; export declare const DEFAULT_BOOTSTRAP_FILENAME = "AGENTS.md"; export declare const DEFAULT_AGENT_WORKSPACE_DIR = ""; export declare const DEFAULT_HEARTBEAT_FILENAME = "HEARTBEAT.md"; /** Stub for upstream compat — returns the config state dir default workspace path. */ export declare function resolveDefaultAgentWorkspaceDir(_env: NodeJS.ProcessEnv): string; export declare function ensureAgentWorkspace(dirOrParams: string | { dir: string; ensureBootstrapFiles?: boolean; }): Promise<{ dir: string; }>;