import React from 'react'; import { IButtonProps } from './'; export type OptionType = { label?: React.ReactNode; onClick?: (value: OptionType) => void; type?: string; }; export interface IDropdownButtonProps extends IButtonProps { options: OptionType[]; optionSize?: 'small' | 'default' | 'medium' | 'large'; menuStyle?: any; placement?: 'bottomRight' | 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | undefined; } declare const DropdownButton: React.FC; export default DropdownButton;