import * as React from 'react';
import { Prompt } from "../../hooks/features/aiAssistant/gridAiAssistantInterfaces.js";
type GridPromptProps = Prompt & {
  onRerun: () => void;
};
declare function GridPrompt(props: GridPromptProps): React.JSX.Element;
export { GridPrompt };