type Props = { query: string; setQuery: (query: string) => void; onSubmit: () => void; placeholder: string; buttonLabel: string; isButtonDisabled?: boolean; size: "l" | "m"; }; /** * The chat window input field and submit button. */ export declare const QueryInput: ({ query, setQuery, onSubmit, placeholder, buttonLabel, isButtonDisabled, size }: Props) => JSX.Element; export {};