import { HubSpotConfigAccount } from '@hubspot/local-dev-lib/types/Accounts'; import { DeveloperTestAccount } from '@hubspot/local-dev-lib/types/developerTestAccounts.js'; export type ProjectDevTargetAccountPromptResponse = { targetAccountId: number | null; createNestedAccount: boolean; parentAccountId?: number | null; notInConfigAccount?: DeveloperTestAccount | null; }; export declare function selectSandboxTargetAccountPrompt(accounts: HubSpotConfigAccount[], defaultAccountConfig: HubSpotConfigAccount): Promise; export declare function selectDeveloperTestTargetAccountPrompt(accounts: HubSpotConfigAccount[], defaultAccountConfig: HubSpotConfigAccount): Promise; export declare function confirmDefaultAccountPrompt(accountName: string, accountType: string): Promise; export declare function confirmUseExistingDeveloperTestAccountPrompt(account: DeveloperTestAccount): Promise; export declare function confirmLinkExistingDeveloperTestAccountPrompt(accountName: string): Promise;