export interface DatabaseOptions { vendor: string; url: string; username: string; password: string; } export declare class CommandsBuilder { private features; private disabledFeatures; private isMetricsEnabled; private database; private shouldImportRealm; private isHealthEnabled; private isThemeCacheDisabled; withHealth(): this; withRealmImport(): this; withDatabase(options: DatabaseOptions): this; withMetrics(): this; withFeatures(features: string[]): this; withThemeCacheDisabled(): this; withDisabledFeatures(disabledFeatures: string[]): this; build(): string[]; }