UNPKG

@konstructio/ui

Version:

A set of reusable and customizable React components built for konstruct.io

8 lines (7 loc) 264 B
import { ClassNames } from '../Drawer.types'; export type ContextValue = { classNames?: ClassNames; headerId?: string; }; export declare const DrawerContext: import('react').Context<ContextValue>; export declare const useDrawerContext: () => ContextValue;