interface ResolveOptions { envBin: string; selfPath: string; pathEnv: string | undefined; } export declare function resolve({ envBin, selfPath, pathEnv }: ResolveOptions): string | null; export {};