import 'colors'; import { ForgeArch, ForgePlatform } from '@electron-forge/shared-types'; export interface PackageOptions { /** * The path to the app to package */ dir?: string; /** * Whether to use sensible defaults or prompt the user visually */ interactive?: boolean; /** * The target arch */ arch?: ForgeArch; /** * The target platform. */ platform?: ForgePlatform; /** * The path to the output directory for packaged apps */ outDir?: string; } declare const _default: ({ dir, interactive, arch, platform, outDir, }: PackageOptions) => Promise; export default _default;