import { AccountType, HubSpotConfigAccount } from '@hubspot/local-dev-lib/types/Accounts'; import { Environment } from '@hubspot/local-dev-lib/types/Accounts'; import { SandboxAccountType } from '../types/Sandboxes.js'; export declare const SANDBOX_TYPE_MAP: { [key: string]: SandboxAccountType; }; export declare const SANDBOX_TYPE_MAP_V2: { readonly STANDARD_SANDBOX: "STANDARD"; readonly DEVELOPMENT_SANDBOX: "DEVELOPER"; }; export declare function getSandboxTypeAsString(accountType?: AccountType): string; export declare function getHasSandboxesByType(parentAccountConfig: HubSpotConfigAccount, type: AccountType): boolean; export declare function validateSandboxUsageLimits(accountConfig: HubSpotConfigAccount, sandboxType: AccountType, env: Environment): Promise; export declare function handleSandboxCreateError(err: unknown, env: Environment, name: string, accountId: number): never;