/** * ralph-starter notion — Interactive Notion pages wizard * * Guides the user through selecting Notion pages to work on: * 1. Authenticate (API token) * 2. Search for pages or paste a URL * 3. Select a page * 4. Delegate to run command */ export type NotionWizardOptions = { commit?: boolean; push?: boolean; pr?: boolean; validate?: boolean; maxIterations?: number; agent?: string; }; export declare function notionCommand(options: NotionWizardOptions): Promise; //# sourceMappingURL=notion.d.ts.map