import type { MetadataV14 } from '@polkadot/types/interfaces/metadata'; import type { AnyJson, Registry } from '@polkadot/types-codec/types'; /** * Strip any given V14 metadata to only the calls inputted, its corresponding types, * any extrinsics and their corresponding types. * * @param registry * @param latestMetadata * @param includePallets */ export declare const toSpecifiedCallsOnlyV14: (registry: Registry, latestMetadata: MetadataV14, includePallets?: string[]) => AnyJson;