UNPKG

@ark-ui/react

Version:

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

10 lines (9 loc) 292 B
import { ReactNode } from 'react'; import { UseStepsContext } from './use-steps-context'; export interface StepsContextProps { children: (context: UseStepsContext) => ReactNode; } export declare const StepsContext: { (props: StepsContextProps): ReactNode; displayName: string; };