/// interface Props { name: string; label?: string; placeholder?: string; removeOptions?: string[]; } declare type RichTextInputProps = JSX.IntrinsicElements['input'] & Props; export declare function RichTextInput({ name, label, disabled, onBlur, onFocus, onChange, placeholder, removeOptions, }: RichTextInputProps): JSX.Element; export {};