export declare const TUI_PROJECT_SCHEMA = "humanish.tui-project.v1"; export interface TuiProjectState { schema: typeof TUI_PROJECT_SCHEMA; /** A committed `humanish/` source directory: this project has been `init`-ed. */ initialized: boolean; /** A `.humanish/` runtime directory: something has been run here, even if source is absent. */ hasRuntime: boolean; } export declare function readProjectState(cwdInput: string): TuiProjectState;