import { DeveloperPlatformClient } from '../utilities/developer-platform-client.js'; export interface GenerateOptions { directory: string; reset: boolean; apiKey?: string; template?: string; flavor?: string; name?: string; cloneUrl?: string; configName?: string; developerPlatformClient?: DeveloperPlatformClient; } declare function generate(options: GenerateOptions): Promise; export default generate;