UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

10 lines (9 loc) 454 B
import React from 'react'; export interface SidebarContextValue { isOpen: 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>;