import type { PromptSubmission, SlashCommandMenuProps } from "./prompt-input/hooks/usePromptInputController.js"; type ComposerProps = { input: string; running: boolean; disabled: boolean; hint: string; onChange: (value: string) => void; onSubmit: (value: PromptSubmission) => void; slashMenu?: SlashCommandMenuProps | undefined; }; export declare function Composer({ input, running, disabled, hint, onChange, onSubmit, slashMenu, }: ComposerProps): import("react/jsx-runtime").JSX.Element; export {};