import type { ErrorType } from '../errors/utils.js'; import type { Chain } from '../types/chain.js'; export type ExtractChainParameters = { chains: chains; id: chainId | chains[number]['id']; }; export type ExtractChainReturnType = Extract; export type ExtractChainErrorType = ErrorType; export declare function extractChain({ chains, id, }: ExtractChainParameters): ExtractChainReturnType; //# sourceMappingURL=extractChain.d.ts.map