import { type StyleProp, type ViewStyle } from 'react-native'; import React, { type ReactNode } from 'react'; import type { MenuItem } from '../models/MenuProps'; export type DropdownProps = { children: ReactNode; items: MenuItem[]; onMenuClick: (key: string | number) => void; renderDropdown?: ReactNode; loading?: boolean; disable?: boolean; width?: number; dropdownStyleProps?: StyleProp; placement?: 'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight' | 'bottom' | 'top'; }; declare const Dropdown: (props: DropdownProps) => React.JSX.Element; export default Dropdown; //# sourceMappingURL=Dropdown.d.ts.map