import React, { JSXElementConstructor } from 'react'; import { StakingNetworkConfigType } from 'types'; import { AccountContextPropsType } from './AccountContext'; import { NetworkContextPropsType } from './NetworkContext'; export interface AppInfoContextProviderPropsType { accountInfo: AccountContextPropsType; networkConfig: StakingNetworkConfigType; Loader?: JSXElementConstructor; getAuthorizationHeaders?: NetworkContextPropsType['getAuthorizationHeaders']; children: React.ReactNode; } export declare function AppInfoContextProvider({ accountInfo, networkConfig: stakingNetworkConfig, Loader, getAuthorizationHeaders, children }: AppInfoContextProviderPropsType): JSX.Element | null; //# sourceMappingURL=AppInfoContextProvider.d.ts.map