react-native-element-dropdown
Version:
React Native Element Dropdown is a library that provides a customizable dropdown component for React Native applications.
11 lines • 342 B
TypeScript
import type { ImageStyle } from 'react-native';
import type { DropdownProps } from '../Dropdown/model';
export type ISelectCountryRef = {
open: () => void;
close: () => void;
};
export interface SelectCountryProps<T> extends DropdownProps<T> {
imageField: string;
imageStyle?: ImageStyle;
}
//# sourceMappingURL=model.d.ts.map