export type DummyCommandKind = 'hello' | 'list' | 'read' | 'write' | 'bash' | 'todo' | 'complete' | 'lifecycle'; export interface DummyCommand { kind: DummyCommandKind; arg?: string; raw: string; } /** Pull the last user-looking paragraph out of a combined profile+message file. */ export declare function extractUserText(combined: string): string; export declare function parseDummyCommand(text: string): DummyCommand;