import { PromptConfig } from '../../types/Prompts.js'; import { AccountType } from '@hubspot/local-dev-lib/types/Accounts'; export type AccountNamePromptResponse = { name: string; }; export declare function getCliAccountNamePromptConfig(defaultName?: string): PromptConfig; export declare function cliAccountNamePrompt(defaultName?: string): Promise; export declare function hubspotAccountNamePrompt({ accountType, currentPortalCount, }: { accountType: AccountType; currentPortalCount?: number; }): Promise;