import { ViewStyle, TextStyle } from "react-native"; import type { DisplayType } from './types'; export declare const getSpringConfig: (velocity?: number) => { stiffness: number; damping: number; mass: number; overshootClamping: boolean; restSpeedThreshold: number; restDisplacementThreshold: number; velocity: number; }; interface PickerProps { currentItemIndex: number; height: number; onCurrentIndexChanged: (index: number) => void; width: number; allowFontScaling?: boolean; containerStyle?: ViewStyle; discoverable?: boolean; display?: DisplayType; fontSize?: number; items?: T[]; marginHorizontalPercentage?: number; marginVerticalPercentage?: number; opacityRangeOut?: number[]; scaleRangeOut?: number[]; spaceBetween?: number; textStyle?: TextStyle; } declare const Picker: ({ allowFontScaling, containerStyle, discoverable, display, fontSize, height, items, currentItemIndex, marginHorizontalPercentage, marginVerticalPercentage, onCurrentIndexChanged, opacityRangeOut, scaleRangeOut, spaceBetween, textStyle, width, }: PickerProps) => JSX.Element; export default Picker;