import * as React from 'react'; import { GridSlotProps, RenderProp } from '@mui/x-data-grid-pro'; import { PromptFieldState } from "./PromptFieldContext.js"; export type PromptFieldControlProps = 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 component that takes user input. * It renders the `baseTextField` slot. * * Demos: * * - [Prompt Field](https://mui.com/x/react-data-grid/components/prompt-field/) * * API: * * - [PromptFieldControl API](https://mui.com/x/api/data-grid/prompt-field-control/) */ declare const PromptFieldControl: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent & React.RefAttributes>; export { PromptFieldControl };