import { ApiRx } from '@polkadot/api'; import { DeriveFees } from '@polkadot/api-derive/types'; import { EraIndex } from '@polkadot/types/interfaces'; import React from 'react'; import { ApiRxContextProviderProps } from './types'; export interface ApiRxContextType { api: ApiRx; bondingDuration?: EraIndex; fees?: DeriveFees; isApiReady: boolean; } export declare const ApiRxContext: React.Context; export declare function ApiRxContextProvider(props: ApiRxContextProviderProps): React.ReactElement; //# sourceMappingURL=ApiRxContext.d.ts.map