import React from 'react'; import { NormalTypes } from '../utils/prop-types'; interface Props { main?: boolean; type?: NormalTypes; onClick?: React.MouseEventHandler; className?: string; } declare const defaultProps: { main: boolean; type: "default" | "secondary" | "success" | "warning" | "error"; onClick: () => void; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ButtonDropdownItemProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType void; className: string; }> & Pick>; export default _default;