import { Arch, AsyncTaskManager, DebugLogger } from "builder-util"; import { FileTransformer } from "builder-util/out/fs"; import { AppInfo } from "./appInfo"; import { PackagerOptions, Packager, AfterPackContext, Configuration, ElectronPlatformName, FileAssociation, PlatformSpecificBuildOptions, CompressionLevel, Platform, Target, TargetSpecificOptions } from "./index"; export declare abstract class PlatformPackager { readonly info: Packager; readonly platform: Platform; readonly packagerOptions: PackagerOptions; readonly buildResourcesDir: string; readonly projectDir: string; readonly config: Configuration; readonly platformSpecificBuildOptions: DC; readonly resourceList: Promise>; private readonly _resourceList; readonly appInfo: AppInfo; protected constructor(info: Packager, platform: Platform); readonly compression: CompressionLevel; readonly debugLogger: DebugLogger; abstract readonly defaultTarget: Array; protected prepareAppInfo(appInfo: AppInfo): AppInfo; private static normalizePlatformSpecificBuildOptions; abstract createTargets(targets: Array, mapper: (name: string, factory: (outDir: string) => Target) => void): void; protected getCscPassword(): string; protected getCscLink(extraEnvName?: string | null): string | null | undefined; protected doGetCscPassword(): string | null | undefined; protected computeAppOutDir(outDir: string, arch: Arch): string; dispatchArtifactCreated(file: string, target: Target | null, arch: Arch | null, safeArtifactName?: string | null): void; pack(outDir: string, arch: Arch, targets: Array, taskManager: AsyncTaskManager): Promise; protected packageInDistributableFormat(appOutDir: string, arch: Arch, targets: Array, taskManager: AsyncTaskManager): void; private static buildAsyncTargets; private getExtraFileMatchers; readonly electronDistExecutableName: "electron" | "brave"; readonly electronDistMacOsExecutableName: "Electron" | "Brave"; protected doPack(outDir: string, appOutDir: string, platformName: ElectronPlatformName, arch: Arch, platformSpecificBuildOptions: DC, targets: Array): Promise; protected createTransformerForExtraFiles(packContext: AfterPackContext): FileTransformer | null; private copyAppFiles; protected signApp(packContext: AfterPackContext, isAsar: boolean): Promise; getIconPath(): Promise; private computeAsarOptions; getElectronSrcDir(dist: string): string; getElectronDestinationDir(appOutDir: string): string; getResourcesDir(appOutDir: string): string; getMacOsResourcesDir(appOutDir: string): string; private checkFileInPackage; private sanityCheckPackage; computeSafeArtifactName(suggestedName: string | null, ext: string, arch?: Arch | null, skipArchIfX64?: boolean, safePattern?: string): string | null; expandArtifactNamePattern(targetSpecificOptions: TargetSpecificOptions | null | undefined, ext: string, arch?: Arch | null, defaultPattern?: string, skipArchIfX64?: boolean): string; private computeArtifactName; expandMacro(pattern: string, arch?: string | null, extra?: any, isProductNameSanitized?: boolean): string; generateName2(ext: string | null, classifier: string | null | undefined, deployment: boolean): string; getTempFile(suffix: string): Promise; readonly fileAssociations: Array; getResource(custom: string | null | undefined, ...names: Array): Promise; readonly forceCodeSigning: boolean; protected getOrConvertIcon(format: IconFormat): Promise; resolveIcon(sources: Array, outputFormat: IconFormat): Promise>; } export interface IconInfo { file: string; size: number; } export declare type IconFormat = "icns" | "ico" | "set"; export declare function isSafeGithubName(name: string): boolean; export declare function normalizeExt(ext: string): string; export declare function resolveFunction(executor: T | string, name: string): T; export declare function chooseNotNull(v1: string | null | undefined, v2: string | null | undefined): string | null | undefined;