import type { Dispatch, RefObject, SetStateAction } from 'react'; import type { AutopilotInfo, FeedProps } from './Feed.types'; export interface FeedContextValue extends Pick { autopilotInfo: AutopilotInfo; onSearch?: FeedProps['onDecoratorSearch']; showSearchResults?: boolean; setShowSearchResults?: Dispatch>; feedRef?: RefObject; } export declare const FeedContext: import("react").Context; //# sourceMappingURL=Feed.context.d.ts.map