import type { CodegenTypes, HostComponent, ViewProps, ColorValue, NativeSyntheticEvent } from 'react-native'; export type OnItemSelectedEventPayload = { selectedIndex: CodegenTypes.Int32; }; export type OnItemSelectedEvent = NativeSyntheticEvent; export interface NativeProps extends ViewProps { onItemSelected: CodegenTypes.DirectEventHandler; selectedIndex: CodegenTypes.Int32; items: string[]; fontSize?: CodegenTypes.WithDefault; itemHeight?: CodegenTypes.WithDefault; textColorCenter?: ColorValue; textColorOut?: ColorValue; cyclic?: CodegenTypes.WithDefault; } declare const _default: HostComponent; export default _default;