ai-native-form
Version:
AI-powered React form assistant with GPT-4, speech input, and schema auto-generation.
9 lines (8 loc) • 337 B
TypeScript
import React from "react";
export interface AIPromptInputProps {
/** Called when the user submits the prompt */
onSubmit: (prompt: string) => void;
/** Hide the built-in "Fill with AI" button, so you can use a custom FillButton */
hideButton?: boolean;
}
export declare const AIPromptInput: React.FC<AIPromptInputProps>;