import { default as React } from 'react'; import { InputProps } from '@chatui/core'; interface ComposerInputProps extends InputProps { invisible: boolean; inputRef: React.MutableRefObject; onImageSend?: (file: File) => Promise; } export declare const ComposerInput: ({ inputRef, invisible, onImageSend, ...rest }: ComposerInputProps) => import("react/jsx-runtime").JSX.Element; export {};