import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Account } from '../../types/account.js'; import type { Chain } from '../../types/chain.js'; import type { SPEC_VERSION } from '../../types/components.js'; export type SupportedSpecsParameters = undefined; export type SupportedSpecsReturnType = SPEC_VERSION[]; export type SupportedSpecsErrorType = { code: number; message: string; }; export declare function supportedSpecs(client: Client): Promise; //# sourceMappingURL=supportedSpecs.d.ts.map