export type DeployedContract = { name: string; address?: string; bypassedInAltGas?: boolean; additionalAltGas?: boolean; initializes: boolean; owned: boolean; layer: Layer; }; export declare enum Layer { L1 = "l1", L2 = "l2" } export declare const contracts: DeployedContract[];