import * as Ably from 'ably'; import React from 'react'; export type AblyContextValue = Record; export interface AblyContextProviderProps { client: Ably.RealtimeClient; _channelNameToChannelContext: Record; _nearestChannelName?: string; } export interface ChannelContextProps { channel: Ably.RealtimeChannel; derived?: boolean; } export declare const AblyContext: React.Context;