import React from "react";
import { UseFeedDataProps, UseFeedDataValues } from "../hooks/entities/useFeedData";
export interface FeedContextProps extends UseFeedDataProps {
    children: React.ReactNode;
}
export interface FeedContextValues extends UseFeedDataValues {
}
export declare const FeedContext: React.Context<Partial<FeedContextValues>>;
export declare const FeedProvider: React.FC<FeedContextProps>;
