/** * 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 toRelativeWorkspacePath: "live"; readonly toRelativeSandboxPath: "live"; readonly resolvePathFromInput: "live"; }; type RelativePathOptions = { allowRoot?: boolean; cwd?: string; boundaryLabel?: string; includeRootInError?: boolean; }; export declare function toRelativeWorkspacePath(root: string, candidate: string, options?: Pick): string; export declare function toRelativeSandboxPath(root: string, candidate: string, options?: Pick): string; export declare function resolvePathFromInput(filePath: string, cwd: string): string; export {};