import type { NormalizedManifest } from '@vltpkg/types'; /** * Infer the default binary from a package. * * Returns `undefined` if it couldn't be determined */ export declare const inferDefaultExecutable: ({ name, bin, }: NormalizedManifest) => undefined | [string, string];