mt-flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
10 lines (9 loc) • 309 B
TypeScript
/// <reference types="react" />
type ModalContext = {
popup?: boolean;
setHeaderId: (id: string | undefined) => void;
onClose?: () => void;
};
export declare const ModalContext: import("react").Context<ModalContext | undefined>;
export declare function useModalContext(): ModalContext;
export {};