export type VegaBuildTarget = 'sim_tv_x86_64' | 'sim_tv_aarch64'; export type VegaBuildType = 'Debug' | 'Release'; /** * Build Vega app and produce .vpkg file */ export declare const buildVegaApp: (buildType?: VegaBuildType, target?: VegaBuildTarget) => Promise; /** * Clean build artifacts */ export declare const cleanBuild: () => Promise; /** * Get the expected .vpkg file path based on build configuration */ export declare const getVpkgPath: (appName: string, buildType?: VegaBuildType, target?: VegaBuildTarget) => string; /** * Launch an already installed app on specified Vega virtual device */ export declare const runApp: (deviceId: string, bundleId: string) => Promise; /** * Kill/terminate app on specified Vega virtual device */ export declare const killApp: (deviceId: string, bundleId: string) => Promise; //# sourceMappingURL=build.d.ts.map