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>;
