import type { FileTree } from './themeOperations.js'; declare enum EjectFileType { File = "file", Folder = "folder" } type ChoiceValue = { path: string; type: EjectFileType; }; type Choice = { name: string; value: ChoiceValue; level?: number; choices?: Choice[]; } | string; export declare function getFileChoices(fileTree: FileTree, folder?: string, level?: number): Choice[]; export declare function askUserToConfirm(question: string): Promise; export declare function askUserToSelectComponents(components: string[], pathToThemeFolder: string): Promise; export {}; //# sourceMappingURL=ejectPrompt.d.ts.map