import { PropTypes } from '@zag-js/react'; import { Optional } from '../../types'; import * as pinInput from '@zag-js/pin-input'; export interface UsePinInputProps extends Optional, 'id'> { } export interface UsePinInputReturn extends pinInput.Api { } export declare const usePinInput: (props?: UsePinInputProps) => UsePinInputReturn;