import { Command } from '../../../core/commands/Command';
import { HTMLEditor } from '../../../core/HTMLEditor';
export interface InsertLazyTableCommandOptions {
    url: string;
    format: 'json' | 'csv';
    hasHeaders?: boolean;
    delimiter?: string;
    tableId?: string;
}
export declare class InsertLazyTableCommand implements Command {
    private options;
    private range;
    private editor;
    constructor(editor: HTMLEditor, options: InsertLazyTableCommandOptions, range: Range);
    execute(): void;
    private generateLazyScript;
}
