import React from 'react'; import { IIconButton } from '../IconButton/IconButton'; import { IElement, IElementReference, IPropsAny } from '../types'; export interface ISpeedDialItem extends IIconButton { open?: boolean; name?: IElement; label?: IElement; tooltipOpen?: boolean; closeOnClick?: boolean; render?: (values: { onBlur: (event: React.FocusEvent) => any; onFocus: (event: React.FocusEvent) => any; TooltipProps: any; [p: string]: any; }) => IElement; onBlur?: (event: React.FocusEvent) => any; onFocus?: (event: React.FocusEvent) => any; Icon?: IElementReference; TooltipProps?: IPropsAny; } declare const SpeedDialItem: React.FC; export default SpeedDialItem;