import { Variant } from '../../variations';
export declare const CHAT_INPUT_VARIANT: readonly ["default", "ai"];
export type ChatInputVariant = Extract<Variant | 'default', (typeof CHAT_INPUT_VARIANT)[number]>;
export type ChatInputProps = {
    /**
     * Whether the chat input is disabled.
     */
    disabled?: boolean;
    /**
     * The variant of the chat input.
     */
    variant?: ChatInputVariant;
    /**
     * Helper text to display under the input field.
     */
    helperText?: string;
};
