import { Onboard } from "./Onboard"; export declare class Database extends Onboard { /** * The name of the onboarding question. * * @var {string} */ static type: string; /** * The description of the onboarding question. * * @var {string} */ static description: string; /** * The choices for the onboarding question. * * @var {string[]|object[]} */ static choices: Array; /** * Get database driver. * * @param {string} database * @returns {string} */ static getDriver(database: string): string; /** * Get database dependency. * * @param {string} database * @returns {string} */ static resolveDependency(database: string): string; }