/**
 * @file 大部分数据库都是这种形式，避免重复编写
 */
import { BasePlugin } from '../../base/BasePlugin';
import { FormSchema } from '../../type';
export declare class GeneralDialectPlugin extends BasePlugin {
    static id: string;
    registerDatabaseDialectType(): {
        type: string;
        title: string;
        buildSettingForm: any;
    };
    buildSettingForm(schema: FormSchema, env: string): void;
}
