import { type Flags } from "../utils/cli.js"; export interface RegisterOptions { draftDir: string; projectsRoot?: string; } export interface RegisterResult { draftId: string; draftName: string; rootMetaPath: string; added: boolean; } export declare function registerDraft(opts: RegisterOptions): RegisterResult; export declare function cmdRegister(positional: string[], flags: Flags): void;