import { type InstallSurface } from "./install-profile.js"; export interface InstallSelectionPromptOptions { stdin: NodeJS.ReadableStream; output: NodeJS.WritableStream; } export declare function promptForInstallSurfaces(options: InstallSelectionPromptOptions): Promise; export declare function parseInstallSurfaceSelection(input: string): readonly InstallSurface[] | null; export declare function formatInstallSelectionLine(selectedSurfaces: readonly InstallSurface[]): string; export declare function installSelectionHelp(): string; //# sourceMappingURL=install-selector.d.ts.map