import { TextInputProps } from '@mantine/core';
import '@mantine/tiptap/styles.css';
interface RichTextEditorProps extends Omit<TextInputProps, 'onChange'> {
    editable?: boolean;
    onChange: (content: string) => void;
}
export declare const RichTextInput: import("react").NamedExoticComponent<RichTextEditorProps & import("react").RefAttributes<HTMLInputElement>>;
export {};
