import React from 'react';
import { FormComponentProps, Option } from '@tomino/dynamic-form';
declare type EditorProps = {
    EmptyCell?: any;
};
declare type Props = FormComponentProps & {
    Component: React.ComponentType<FormComponentProps & EditorProps>;
    Template?: React.ComponentType<FormComponentProps & {
        templateIndex: number;
    }>;
    options: Option[];
};
export declare const TemplateEditor: (props: Props) => JSX.Element;
export {};
