UNPKG

@ark-ui/react

Version:

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

13 lines (12 loc) 617 B
import { HTMLProps, PolymorphicProps } from '../factory'; import { UsePasswordInputReturn } from './use-password-input'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; interface RootProviderProps { value: UsePasswordInputReturn; } export interface PasswordInputRootProviderBaseProps extends RootProviderProps, PolymorphicProps { } export interface PasswordInputRootProviderProps extends HTMLProps<'div'>, PasswordInputRootProviderBaseProps { } export declare const PasswordInputRootProvider: ForwardRefExoticComponent<PasswordInputRootProviderProps & RefAttributes<HTMLDivElement>>; export {};