import { Component } from 'react'; /** * condition-display-step: required to avoid the cache of the trigger * @param e * @param isOpen */ declare class AndOrController extends Component { static defaultProps: { isMain: boolean; handleRuleContainerOperator: () => null; handleRuleContainerUnGroup: () => null; handleTooltipGroup: () => null; labelOn: string; labelOff: string; condition: boolean; showDragController: boolean; allowUnGroup: boolean; buttonActionSize: "m"; buttonActionType: string; toogleActionSize: "s"; onAddFilter: () => null; multipleSize: boolean; delayClose: number; delayOpen: number; step: null; toolBarAnimationDuration: number; toolBarInteractionType: string; toolBarPosition: string; }; constructor(props: any); handleMouseEnterRow: (e: any) => void; handleMouseMove: (e: any) => void; handleMouseLeaveRow: () => void; handleTooltipRow: (isOpen: any) => void; render(): import("react/jsx-runtime.js").JSX.Element; } export default AndOrController;