import * as React from 'react';
import { GridSlotProps, RenderProp } from '@mui/x-data-grid-pro';
import { PromptFieldState } from "./PromptFieldContext.js";
export type PromptFieldSendProps = Omit<GridSlotProps['baseIconButton'], 'className'> & {
  /**
   * A function to customize rendering of the component.
   */
  render?: RenderProp<GridSlotProps['baseIconButton'], PromptFieldState>;
  /**
   * Override or extend the styles applied to the component.
   */
  className?: string | ((state: PromptFieldState) => string);
};
/**
 * A button that processes the prompt when clicked.
 * It renders the `baseIconButton` slot.
 *
 * Demos:
 *
 * - [Prompt Field](https://mui.com/x/react-data-grid/components/prompt-field/)
 *
 * API:
 *
 * - [PromptFieldSend API](https://mui.com/x/api/data-grid/prompt-field-send/)
 */
declare const PromptFieldSend: React.ForwardRefExoticComponent<PromptFieldSendProps> | React.ForwardRefExoticComponent<Omit<PromptFieldSendProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
export { PromptFieldSend };