import { BasePart, Part } from '.';
import { TemplateResult } from '@blinkk/selective-edit';
import { EditorState } from '../state';
import { LiveEditor } from '../editor';
export interface EmptyPartConfig {
    /**
     * State class for working with editor state.
     */
    state: EditorState;
}
export declare class EmptyPart extends BasePart implements Part {
    config: EmptyPartConfig;
    constructor(config: EmptyPartConfig);
    classesForPart(): Record<string, boolean>;
    template(editor: LiveEditor): TemplateResult;
}
