import React from 'react'; import "./DfDropDown.css"; import { IComponentBaseProps } from '../types'; export declare type DfDropDownProps = React.HTMLAttributes & IComponentBaseProps & { disabled?: Boolean; responsive?: Boolean; defaultValue?: string; onChange?: (newValue: any) => void; option?: string[]; }; declare const DfDropDown: React.ForwardRefExoticComponent & IComponentBaseProps & { disabled?: Boolean | undefined; responsive?: Boolean | undefined; defaultValue?: string | undefined; onChange?: ((newValue: any) => void) | undefined; option?: string[] | undefined; } & React.RefAttributes>; export default DfDropDown;