import * as React from "react"; export interface IConversationViewPanelContext { selectedPanel?: string | undefined; siblings: { [id: string]: string; }; onPanelSelected: (id: string) => void; registerPanel: (id: string, name: string) => void; } export declare const ConversationViewPanelContext: React.Context;