import { AccountLevel, DeveloperTestAccountConfig } from '@hubspot/local-dev-lib/types/developerTestAccounts.js'; declare const hubs: { MARKETING: string; OPS: string; SERVICE: string; SALES: string; CONTENT: string; COMMERCE: string; }; type HubName = keyof typeof hubs; export type HubConfig = { hub: HubName; tier: AccountLevel; }; export declare function createDeveloperTestAccountConfigPrompt(args?: { name?: string; description?: string; marketingLevel?: AccountLevel; opsLevel?: AccountLevel; serviceLevel?: AccountLevel; salesLevel?: AccountLevel; contentLevel?: AccountLevel; commerceLevel?: AccountLevel; }, supportFlags?: boolean): Promise; export {};