import type { SecurityReport, SupportedChain } from "../../types/index.js"; /** Scan an ABI for dangerous function signatures. */ export declare function scanAbiForDangerousFunctions(abi: unknown[] | undefined): string[]; export declare function checkContractSecurity(address: `0x${string}`, chain: SupportedChain): Promise;