import React from 'react'; import { ButtonProps } from '../../basic/Button/Button'; export interface DropdownButtonProps extends ButtonProps { buttonText?: string; children: React.ReactNode; iconFlipAnimation?: IconFlipAnimation; id: string; onClick?: (event: React.MouseEvent) => void; } declare type IconFlipAnimation = boolean; declare const DropdownButton: ({ buttonText, children, icon, iconFlipAnimation, id, onClick, ...props }: DropdownButtonProps) => JSX.Element; export default DropdownButton;