import * as react_jsx_runtime0 from "react/jsx-runtime"; //#region src/react/genie/genie-chat-input.d.ts interface GenieChatInputProps { /** Callback fired when the user submits a message */ onSend: (content: string) => void; /** Disable the input and send button */ disabled?: boolean; /** Placeholder text shown in the textarea */ placeholder?: string; /** Additional CSS class for the container */ className?: string; } /** Auto-expanding textarea input with a send button for chat messages. Submits on Enter (Shift+Enter for newline). */ declare function GenieChatInput({ onSend, disabled, placeholder, className }: GenieChatInputProps): react_jsx_runtime0.JSX.Element; //#endregion export { GenieChatInput }; //# sourceMappingURL=genie-chat-input.d.ts.map