import { FormSchema } from '../../type';
import { BasePlugin } from '../../base/BasePlugin';
export declare class ElasticsearchDialectPlugin extends BasePlugin {
    static id: string;
    registerDatabaseDialectType(): {
        type: string;
        title: string;
        isRdbms: boolean;
        schemaLess: boolean;
        buildSettingForm: any;
    };
    buildSettingForm(schema: FormSchema, env: string): void;
}
