import { ScrollView } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A scrollable list of the select items. * Renders a `` with the `listbox` role. * * Upstream pairs this with `ScrollUpArrow`/`ScrollDownArrow` parts; a * `ScrollView` scrolls natively on touch, so those are not ported. */ export declare function SelectList(componentProps: SelectList.Props): import("react").ReactElement>; export interface SelectListState { /** * Whether the select popup is currently open. `Combobox.List` publishes the * same, so a list styled from state reads the same either way. */ open: boolean; } export interface SelectListProps extends ZestUIComponentProps { } export declare namespace SelectList { type State = SelectListState; type Props = SelectListProps; } //# sourceMappingURL=SelectList.d.ts.map