UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

10 lines (9 loc) 229 B
interface Service { initialContext: { id: string; }; state: Record<string, any>; subscribe: (callback: () => void) => () => void; } export declare const useDebugger: (service: Service) => void; export {};