import { DeveloperTestAccountConfig } from '@hubspot/local-dev-lib/types/developerTestAccounts'; import { Environment } from '@hubspot/local-dev-lib/types/Accounts'; import { HubSpotConfigAccount } from '@hubspot/local-dev-lib/types/Accounts'; import { V2Sandbox } from '@hubspot/local-dev-lib/types/Sandbox'; import { SandboxAccountType } from '../types/Sandboxes.js'; export declare function saveAccountToConfig(accountId: number | undefined, accountName: string, env: Environment, personalAccessKey?: string, force?: boolean): Promise; export declare function createDeveloperTestAccountV2(parentAccountId: number, testAccountConfig: DeveloperTestAccountConfig): Promise<{ accountName: string; accountId?: number; personalAccessKey?: string; }>; export declare function buildDeveloperTestAccount(testAccountName: string, parentAccountConfig: HubSpotConfigAccount, env: Environment, portalLimit: number, useV2?: boolean): Promise; export declare function buildV2Sandbox(sandboxName: string, parentAccountConfig: HubSpotConfigAccount, sandboxType: SandboxAccountType, syncObjectRecords: boolean, env: Environment, force?: boolean): Promise<{ sandbox: V2Sandbox; }>;