import { SandboxPersonalAccessKey, SandboxResponse, SandboxUsageLimitsResponse, V2Sandbox } from '../types/Sandbox.js'; import { HubSpotPromise } from '../types/Http.js'; /** * @deprecated Use createV2Sandbox instead */ export declare function createSandbox(accountId: number, name: string, type: 1 | 2): HubSpotPromise; export declare function deleteSandbox(parentAccountId: number, sandboxAccountId: number): HubSpotPromise; export declare function getSandboxUsageLimits(parentAccountId: number): HubSpotPromise; export declare function createV2Sandbox(accountId: number, name: string, type: 'STANDARD' | 'DEVELOPER', syncObjectRecords: boolean): HubSpotPromise; export declare function getSandboxPersonalAccessKey(accountId: number, sandboxId: number): HubSpotPromise;