import { AppConfiguration } from '../../../models/app/app.js'; import { DeveloperPlatformClient } from '../../../utilities/developer-platform-client.js'; export interface LinkOptions { directory: string; apiKey?: string; configName?: string; baseConfigName?: string; developerPlatformClient?: DeveloperPlatformClient; } export default function link(options: LinkOptions, shouldRenderSuccess?: boolean): Promise;