import * as React from 'react';
interface IEditorProps {
    defaultValue?: string;
    placeholder?: string;
    onChange?(value: string): void;
    label?: string;
    apiCdnUpload: string;
    disabled?: boolean;
}
export default function PHXTextEditorV2({ defaultValue, label, onChange, placeholder, apiCdnUpload, disabled, }: IEditorProps): React.JSX.Element;
export {};
