import { FC, HTMLAttributes } from 'react';
import { PinFieldSize } from '../../types';
export interface PinFieldSeparatorProps extends HTMLAttributes {
/**
* Controls the visual size of the separator.
* Aligns with the size of the surrounding `PinField` elements.
*/
size?: PinFieldSize;
}
/** The PinFieldSeparator component provides a visual divider between segments of a PinField, helping group input characters (e.g., in formats like 1234 — 5678) and supporting configurable sizing for layout consistency */
export declare const PinFieldSeparator: FC;