UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

8 lines 446 B
import * as React from 'react'; import { DialogStore } from "../store/DialogStore.js"; export interface DialogRootContext<Payload = unknown> { store: DialogStore<Payload>; } export declare const DialogRootContext: React.Context<DialogRootContext<unknown> | undefined>; export declare function useDialogRootContext(optional?: false): DialogRootContext; export declare function useDialogRootContext(optional: true): DialogRootContext | undefined;