import { OptionsData } from '../Inputs/Selects/type';
import { IButtonProps } from '../Inputs/Button/type';
import { RemovePropsTypes } from '../../commonTypes';
export interface IDropdownProps extends RemovePropsTypes<IButtonProps, 'text' | 'href' | 'uploadButton' | 'type'>, OptionsData {
    onClick?: (e: any) => void;
    noText?: boolean;
}
