export type Chain = {
    id: number;
    name: string;
    network: string;
    rpcUrl: string;
    explorerUrl?: string;
};
export type L2Chain = Chain & {
    l1Chain?: Chain;
    blockExplorerApiUrl?: string;
    verificationApiUrl?: string;
};
export declare const l2Chains: L2Chain[];
