react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
8 lines (7 loc) • 374 B
TypeScript
import { PickerProps, PickerSingleValue, PickerValue } from './types';
export declare function extractPickerItems(props: PickerProps): {
value: any;
label: any;
}[];
export declare function isItemSelected(childValue: PickerSingleValue, selectedValue?: PickerValue): boolean;
export declare function shouldFilterOut(searchValue: string, itemLabel?: string): boolean;