import { HardhatRuntimeEnvironment } from 'hardhat/types'; export interface DeployTaskParams { artifacts?: string[]; outputFolder?: string; debug?: boolean; quiet?: boolean; } /** * Get a list of all the contracts fully qualified names that are present or imported * on the local contracts/ folder. * It can include a whitelist filter by contractName, contractSource, * or if its included in a given folder. */ export declare function getContractsFullyQualifiedNames(hre: HardhatRuntimeEnvironment, patterns?: string[]): Promise; /** * Filter the given contracts using multimatch. It can include a whitelist filter * by contractName, contractSource, or if its included in a given folder. */ export declare function filterContracts(contracts: string[], patterns?: string[]): string[]; //# sourceMappingURL=generate-testable.d.ts.map