import { Command } from '../../../core/commands/Command';
import { HTMLEditor } from '../../../core/HTMLEditor';
export interface EditLazyTableCommandOptions {
    url?: string;
    format?: 'json' | 'csv';
    hasHeaders?: boolean;
    delimiter?: string;
    tableId?: string;
}
export declare class EditLazyTableCommand implements Command {
    private editor;
    private table;
    constructor(editor: HTMLEditor, table: HTMLElement, _options?: EditLazyTableCommandOptions);
    execute(): void;
    private updateTable;
    private generateLazyScript;
}
