import { UnionOmit } from '@co-hooks/util';
import React, { HTMLAttributes } from 'react';
export interface IEditorTemplateRender {
    templateId: string;
}
export declare type IEditorTemplateRenderProps = UnionOmit<IEditorTemplateRender, HTMLAttributes<HTMLDivElement>>;
export declare const EditorTemplateRender: React.MemoExoticComponent<(props: UnionOmit<IEditorTemplateRender, React.HTMLAttributes<HTMLDivElement>>) => JSX.Element>;
