import { ContentSectionPart, ContentSectionPartConfig } from './section';
import { DeepObject, TemplateResult } from '@blinkk/selective-edit';
import { LiveEditor } from '../../editor';
export declare class FieldsPart extends ContentSectionPart {
    data: DeepObject;
    constructor(config: ContentSectionPartConfig);
    handleAction(evt: Event): void;
    get label(): string;
    loadEditorConfig(): void;
    get section(): string;
    templateContent(editor: LiveEditor): TemplateResult;
}
