import { FC, HTMLAttributes } from 'react';
export interface PinFieldSlotProps extends HTMLAttributes {
/**
* The zero-based index of the slot within the PinField sequence.
*/
index: number;
}
/** The PinFieldSlot component represents an individual character position within a PinField, exposing its index for customizing the rendering, behavior, or styling of that specific input cell. */
export declare const PinFieldSlot: FC;