import { BuildArtifact } from "../../types"; /** * Retrieves the build artifact for a specified contract. * * @param {string} _contractName - The name of the contract. * @param {string} buildDirPath - The path to the directory containing build artifacts. * @returns {BuildArtifact} The build artifact containing the contract's bytecode, ABI, and compiler information. * @throws {Error} If the artifact or build info is not found. */ export default function getBuildArtifact(_contractName: string, buildDirPath: string): BuildArtifact; export declare function sourcePathFromSourceCode(compilerInput: any, contractName: string): string | null;