type StreamOpts = { input?: NodeJS.ReadableStream; output?: NodeJS.WritableStream; }; type TypedSlugOpts = { maxAttempts?: number; } & StreamOpts; export declare function confirmYesNo(prompt: string, opts?: StreamOpts): Promise; export declare function confirmTypedSlug(expectedSlug: string, prompt: string, opts?: TypedSlugOpts): Promise; export {};