import type { ResponseContextValue, ResponseRootProps, ResponseRound } from './types'; declare const DEMO_ROUNDS: ResponseRound[]; declare const DEMO_FINAL_MD = "## Plan\n\nI will organize your **1,000 local photos** by building an index, clustering them into albums, and then performing a safe rename + move operation.\n\n### Folder structure\n\n```text\nPictures/\n Organized/\n 2026-01-18 \u2014 San Francisco \u2014 Golden Gate Park/\n 2026-01-05 \u2014 Home \u2014 Documents/\n 2025-12-31 \u2014 New Year's Eve/\n _Duplicates/\n _Unsorted/\n```\n\n### Naming scheme\n\n`YYYY-MM-DD_HH-mm-ss______.`\n\nExample:\n\n`2026-01-18_15-42-11__San-Francisco__Outdoor__001.jpg`\n\n### Safety checks\n\n- [x] Dry-run all operations\n- [x] Detect collisions and append counters\n- [x] Keep an audit log (CSV)\n- [ ] Execute moves (requires confirmation)\n\n---\n\n## Next step\n\nIf you want, I can generate a **preview report** first (top 50 renames + album summary) before applying changes.\n"; export declare function useResponseContext(): ResponseContextValue; export declare function ResponseRootProvider({ simulate, phase, rounds, finalMarkdown, onSimulateComplete, onStepChange, thinkingIndicator, children, }: ResponseRootProps): import("react/jsx-runtime").JSX.Element; export declare namespace ResponseRootProvider { var displayName: string; } export { DEMO_ROUNDS, DEMO_FINAL_MD };