import { SandboxAccountType } from '../../types/Sandboxes.js'; type SandboxTypePromptResponse = { type: SandboxAccountType; }; type DeleteSandboxPromptResponse = { account: string; }; export declare function sandboxTypePrompt(): Promise; export declare function deleteSandboxPrompt(promptParentAccount?: boolean): Promise; export {};