import * as React from 'react'; import { GridSlotProps, RenderProp } from '@mui/x-data-grid-pro'; import { PromptFieldState } from "./PromptFieldContext.js"; export type PromptFieldSendProps = Omit & { /** * A function to customize rendering of the component. */ render?: RenderProp; /** * 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 | React.ForwardRefExoticComponent & React.RefAttributes>; export { PromptFieldSend };