import { ProjectorSaWindows } from '../../projector/sa/windows.ts'; import { BundleSa } from '../sa.ts'; /** * BundleSaWindows object. */ export declare class BundleSaWindows extends BundleSa { /** * ProjectorSaWindows instance. */ readonly projector: ProjectorSaWindows; /** * BundleSaWindows constructor. * * @param path Output path for the main application. * @param flat Flat bundle. */ constructor(path: string, flat?: boolean); /** * @inheritdoc */ get extension(): string; /** * @inheritdoc */ protected _getProjectorPathNested(): string; /** * @inheritdoc */ protected _createProjector(): ProjectorSaWindows; /** * @inheritdoc */ protected _writeLauncher(): Promise; }