import React from 'react'; interface ITextBox { viewer: boolean; title: string; description: string; theme: 'light' | 'dark' | string; height: string; options: any; editorRef: any; } export declare const TextBox: React.ForwardRefExoticComponent & React.RefAttributes>; export {};