UNPKG

@ark-ui/react

Version:

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

9 lines (8 loc) 441 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { UsePresenceProps } from './use-presence'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface PresenceBaseProps extends UsePresenceProps, PolymorphicProps { } export interface PresenceProps extends HTMLProps<'div'>, PresenceBaseProps { } export declare const Presence: ForwardRefExoticComponent<PresenceProps & RefAttributes<HTMLDivElement>>;