import { default as config } from './config';
export interface ITinymceProps {
    id?: string;
    config?: keyof typeof config;
    width?: string;
    height?: string;
    modelValue?: string;
    httpRequest?: any;
}
