import { CompilationJob, CompilerInput, CompilerOutput } from 'hardhat/types';
export interface Build {
    compilationJob: CompilationJob;
    input: CompilerInput;
    output: CompilerOutput;
    solcBuild: any;
}
export interface VerificationArgs {
    address?: string;
    constructorArgsParams: string[];
    constructorArgs?: string;
    contract?: string;
    libraries?: string;
    listNetworks?: boolean;
    noCompile?: boolean;
}
export interface Libraries {
    [libraryName: string]: string;
}
//# sourceMappingURL=types.d.ts.map