import { FC, HTMLAttributes, Ref } from 'react';
export interface SelectListboxProps extends HTMLAttributes {
/**
* Ref to the listbox container element.
*
* Used internally to connect the listbox to Floating UI
* and can also be used externally for imperative access
* (e.g. focus management or measurements).
*/
ref?: Ref;
}
/**
* Container for Select options rendered as a listbox.
*
* Visibility is controlled via `data-status` and `hidden`, allowing
* CSS-driven enter/exit animations without unmounting immediately.
*/
export declare const SelectListbox: FC;