import type { HexString, Transport } from '@novasamatech/host-api'; import type { JsonRpcProvider } from 'polkadot-api'; type InternalParams = { transport?: Transport; }; export declare function createPapiProvider(genesisHash: HexString, __fallback?: JsonRpcProvider, internal?: InternalParams): JsonRpcProvider; export {};