import { IProvider } from './provider';
export declare class MsSqlProvider implements IProvider {
    private readonly username;
    private readonly password;
    private readonly host;
    private readonly databaseName;
    private readonly port;
    constructor(props: {
        databaseName?: string;
        host: string;
        password: string;
        username: string;
        port?: string;
    });
    query(script: string): Promise<any>;
}
