import type { SdkVersion, Template } from "./templates.js"; interface RunArgs { project: string; overwrite: boolean; template: Template; sdkVersion: SdkVersion; foundryUrl: string; applicationUrl: string | undefined; application: string; ontology: string | undefined; clientId: string | undefined; osdkPackage: string | undefined; osdkRegistryUrl: string | undefined; corsProxy: boolean; scopes: string[] | undefined; /** Opt-in gate for unstable/experimental features; defaults to `false`. */ unstableFeatures?: boolean; } export declare function run({ project, overwrite, template, sdkVersion, foundryUrl, applicationUrl, application, ontology, clientId, osdkPackage, osdkRegistryUrl, corsProxy, scopes, unstableFeatures }: RunArgs): Promise; export {};