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