import type { ConfirmOptions, SelectOptions, TextOptions } from '@clack/prompts'; export default class PromptsProvider { color: import("picocolors/types").Colors & { createColors: (enabled?: boolean) => import("picocolors/types").Colors; }; intro(text?: string): string; outro(text?: string): string; text(options: TextOptions): string; confirm(options: ConfirmOptions): string; select(options: SelectOptions): string; cancel(text?: string): string; isCancel(value: any): string; startSpinner(): string; stopSpinner(): string; } //# sourceMappingURL=prompts.d.ts.map