import { FC, InputHTMLAttributes } from 'react';
export type SegmentedControlItemHiddenInputProps = Omit, 'value' | 'name'>;
/**
* SegmentedControlItemHiddenInput
*
* A visually hidden native `` used to integrate
* `SegmentedControl` with native form behavior and accessibility APIs.
*
* Notes:
* - This component is not meant to be used standalone
* - It should be rendered within a `SegmentedControlItem` to ensure
* correct context and behavior
*/
export declare const SegmentedControlItemHiddenInput: FC;