import React from 'react'; interface DropDownProps { content?: any; themeColor?: string; tintColor?: string; title?: string; iconPath?: string; style?: any; topStyle?: any; arrow?: boolean; maxHeight?: number; titleStyle?: any; duration?: number; animateWapperStyle?: any; icon?: any; } interface DropDownState { rotateValue: any; changeValue: number; } export default class DropDown extends React.Component { static defaultProps: { title: string; style: any; topStyle: any; arrow: boolean; maxHeight: number; iconPath: string; titleStyle: any; duration: number; animateWapperStyle: any; themeColor: string; tintColor: string; }; constructor(props: DropDownProps); _handleToToggle: (changeValue: any) => void; render(): JSX.Element; } export {};