import { ProjectorSaLinux } from '../../projector/sa/linux.ts'; import { BundleSa } from '../sa.ts'; /** * BundleSaLinux object. */ export declare class BundleSaLinux extends BundleSa { /** * ProjectorSaLinux instance. */ readonly projector: ProjectorSaLinux; /** * BundleSaLinux 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(): ProjectorSaLinux; /** * @inheritdoc */ protected _writeLauncher(): Promise; }