import React from 'react'; import { AIInputProps } from './types'; export interface AITextInputProps extends AIInputProps { } /** * An AI-powered controlled text input component that uses the Grafana Assistant engine to generate content. * Features an integrated send button as well as a gradient border animation while generating. */ export declare function AITextInput({ value, onChange, placeholder, origin, systemPrompt, onComplete, onError, onDelta, disabled, autoGenerate, streaming, getUserPrompt, className, 'data-testid': dataTestId, }: AITextInputProps): React.JSX.Element; //# sourceMappingURL=AITextInput.d.ts.map