///
import { ApiOptions } from '@polkadot/api/types';
import { ProviderInterface } from '@polkadot/rpc-provider/types';
export interface ApiRxContextProviderProps {
children?: React.ReactElement;
provider: ProviderInterface;
}
export interface ApiPromiseContextProviderProps extends ApiRxContextProviderProps {
types?: ApiOptions['types'];
}
/**
* See: https://stackoverflow.com/questions/49285864/is-there-a-valueof-similar-to-keyof-in-typescript
**/
export declare type ValueOf = T[keyof T];
//# sourceMappingURL=types.d.ts.map