export type DropDownProps = { index: number; active: any; list: any; setActive: any; setVisible: any; visible: any; }; declare const DropDown: ({ index, active, list, setActive, setVisible, visible }: DropDownProps) => import("react/jsx-runtime").JSX.Element; export default DropDown;