import { Contract } from 'ethers'; import type { ChainMap, ChainName, IChainConnection } from '../types'; export interface CheckerViolation { chain: ChainName; type: string; expected: any; actual: any; data?: any; } export declare type EnvironmentConfig = ChainMap; export declare enum ViolationType { Owner = "Owner" } export interface OwnerViolation extends CheckerViolation { type: ViolationType.Owner; data: { contract: Contract; }; } //# sourceMappingURL=types.d.ts.map