@vibe-kit/grok-cli
Version:
An open-source AI agent that brings the power of Grok directly into your terminal.
12 lines (11 loc) • 425 B
TypeScript
import React from "react";
interface ConfirmationDialogProps {
operation: string;
filename: string;
onConfirm: (dontAskAgain?: boolean) => void;
onReject: (feedback?: string) => void;
showVSCodeOpen?: boolean;
content?: string;
}
export default function ConfirmationDialog({ operation, filename, onConfirm, onReject, showVSCodeOpen, content, }: ConfirmationDialogProps): React.JSX.Element;
export {};