export type FullScreenOverlayKind = "skills" | "plan"; interface FullScreenOverlayRouterProps { overlay: FullScreenOverlayKind | null; cwd: string; planAutoExpand: boolean; onCloseSkills: () => void; onClosePlan: () => void; onApprovePlan: (planPath: string) => void; onRejectPlan: (planPath: string, feedback: string) => void; } export declare function FullScreenOverlayRouter({ overlay, cwd, planAutoExpand, onCloseSkills, onClosePlan, onApprovePlan, onRejectPlan, }: FullScreenOverlayRouterProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=FullScreenOverlayRouter.d.ts.map