import type { CodecClass } from '@polkadot/types/types'; import type { ApiBase } from '../base/index.js'; import type { ApiInterfaceRx, ApiTypes } from '../types/index.js'; import type { SubmittableExtrinsic } from './types.js'; interface SubmittableOptions { api: ApiInterfaceRx; apiType: ApiTypes; blockHash?: Uint8Array | undefined; decorateMethod: ApiBase['_decorateMethod']; } export declare function createClass({ api, apiType, blockHash, decorateMethod }: SubmittableOptions): CodecClass>; export {};