/** Struct which describe available features for a database */
export interface DatabaseCapabilities {
    /** Availability of the changePassword function */
    changePassword: boolean;
    /** Availability of the changeRight function */
    changeRight: boolean;
    /** Availability of the delete function */
    delete: boolean;
    /** Availability of the dump function */
    dump: boolean;
    /** Availability of the getQuota function */
    getQuota: boolean;
    /** Availability of the getQuota function */
    getRight: boolean;
    /** URL of the database management tool */
    guiURL: string;
    /** Availability of the optimize function */
    optimize: boolean;
    /** Availability of the restore function */
    restore: boolean;
}
//# sourceMappingURL=DatabaseCapabilities.d.ts.map