/** True when stdin/stdout are TTYs and `--no-interactive` was not passed. */ export declare function canPromptInteractive(noInteractive?: boolean): boolean; /** * Confirm with default yes when a TTY is available. `--yes` accepts without * asking. No TTY and no `--yes` returns false so secrets are not written remotely. */ export declare function confirmOrDefault(message: string, opts: { yes?: boolean; noInteractive?: boolean; cancelStage: string; }): Promise; //# sourceMappingURL=prompt.d.ts.map