import * as React from 'react'; export interface ChatComposerProps extends React.HTMLAttributes { placeholder?: string; disabled?: boolean; onSend?: (message: string) => void; header?: React.ReactNode; footer?: React.ReactNode; note?: string; } declare function ChatComposer({ className, placeholder, disabled, onSend, header, footer, note, ...props }: ChatComposerProps): import("react/jsx-runtime").JSX.Element; export { ChatComposer };