import { ReactElement } from 'react';
type Props = {
    children?: ReactElement;
    onChange?: (value: string) => void;
    suggestion?: string;
    sugStyle?: string;
};
declare const SmartCompose: ({ children, suggestion, onChange, sugStyle }: Props) => import("react/jsx-runtime").JSX.Element;
export default SmartCompose;
