import type { GraphChainList } from './list'; export type GraphChainPair = (typeof GraphChainList)[number]; export type GraphL1ChainId = GraphChainPair['l1']['id']; export type GraphL2ChainId = GraphChainPair['l2']['id']; export type GraphChainId = GraphL1ChainId | GraphL2ChainId; export type GraphL1ChainName = GraphChainPair['l1']['name']; export type GraphL2ChainName = GraphChainPair['l2']['name']; export type GraphChainName = GraphL1ChainName | GraphL2ChainName; export declare function isGraphL1ChainId(value: unknown): value is GraphL1ChainId; export declare function isGraphL2ChainId(value: unknown): value is GraphL2ChainId; export declare function isGraphChainId(value: unknown): value is GraphChainId; export declare function isGraphChainL1Localhost(value: unknown): value is GraphChainId; export declare function isGraphL1ChainName(value: unknown): value is GraphL1ChainName; export declare function isGraphL2ChainName(value: unknown): value is GraphL2ChainName; export declare function isGraphChainName(value: unknown): value is GraphChainName; export declare function isGraphChainL2Localhost(value: unknown): value is GraphChainId; //# sourceMappingURL=types.d.ts.map