export declare class Onboard { /** * The name of the onboarding question. * * @var {string} */ static type: string; /** * The question onboarding method. * * @var {string} */ static method: string; /** * The description of the onboarding question. * * @var {string} */ static description: string; /** * The choices for the onboarding question. * * @var {string[]|object[]} */ static choices: Array; /** * Default value for provided list. * * @var {string|number|null} */ static default?: string | number; /** * Make prompt. * * @returns {Promise} */ static make(): Promise; }