import type { PrivilegedRole, SupportedChain } from "../../types/index.js"; /** Enumerate privileged roles on a contract (best-effort given public ABIs). */ export declare function checkPermissionRisks(address: `0x${string}`, chain: SupportedChain): Promise<{ address: `0x${string}`; chain: SupportedChain; roles: PrivilegedRole[]; notes: string[]; }>;