import { Questions } from './types'; declare function url(text: string, url: string): string; declare function print(text: string): Promise; declare function prompt(questions: Questions): Promise; declare function start(text: string): Promise; declare function stop(text: string): Promise; declare function wait(duration: number): Promise; declare function init(): { start: typeof startProgress; increment: typeof advance; stop: typeof stopProgress; }; declare function startProgress(length: number, initial?: number, message?: string): Promise; declare function advance(increment?: number): Promise; declare function stopProgress(message?: string): Promise; declare function bold(text: string): string; declare function italic(text: string): string; declare const _default: { print: typeof print; prompt: typeof prompt; colors: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; } & { callOutCyan: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; actionBlue: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; primary: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; secondary: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; tertiary: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; successGreen: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; errorRed: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; multiPurple: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; multiBlue: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; multiOrange: import("chalk").Chalk & { supportsColor: import("chalk").ColorSupport; }; }; spinner: { start: typeof start; stop: typeof stop; }; wait: typeof wait; url: typeof url; table: typeof import("cli-ux/lib/styled/table").table; tree: typeof import("cli-ux/lib/styled/tree").default; bold: typeof bold; italic: typeof italic; progress: { init: typeof init; }; }; export default _default;