UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

13 lines (12 loc) 575 B
import React from 'react'; export interface SidebarContextValue { isOpen: boolean; isEdit: boolean; scrollbarElement: Element | null; setIsEdit: React.Dispatch<React.SetStateAction<boolean>>; setIsOpen: React.Dispatch<React.SetStateAction<boolean>>; } export declare const SidebarContext: React.Context<SidebarContextValue>; export declare const SidebarProvider: React.FC<SidebarContextValue & React.PropsWithChildren>; export declare const useSidebar: () => SidebarContextValue; export declare const SidebarConsumer: React.Consumer<SidebarContextValue>;