import InstallerBase, { InstallerOptions } from '@electron-forge/installer-base';
export { InstallerOptions };
export default abstract class InstallerLinux extends InstallerBase {
    which: (type: string, prog: string, promise: () => Promise<unknown>) => Promise<void>;
    sudo: (type: string, program: string, args: string) => Promise<void>;
}
