import React from 'react';
export type FeedSocketContextValue = {
    socket: WebSocket | undefined;
    isSocketReady: boolean;
};
export declare const useFeedSocket: () => FeedSocketContextValue;
export declare const FeedSocketProvider: React.FC<any>;
