import { FC, SelectHTMLAttributes } from 'react'; export type SelectHiddenSelectProps = SelectHTMLAttributes; /** * Hidden native `` for form compatibility. * * Renders a visually hidden native `select` element that mirrors the * current Select state. It is used to: * - Enable correct form submission (`name`, `value`) * - Support browser autofill and native form behaviors * - Preserve accessibility semantics for forms without exposing UI */ export declare const SelectHiddenSelect: FC;