import { type BinaryName } from '../../../../config/binaries.ts';
import { type FetchResult } from './AbstractBinary.ts';
import { GithubBinary } from './GithubBinary.ts';
export declare class ElectronBinary extends GithubBinary {
    fetch(dir: string, binaryName?: BinaryName): Promise<FetchResult | undefined>;
}
