/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ declare function createShowHandler({ action, target, getDelay, timeoutState }: { action: any; target: any; getDelay: any; timeoutState: any; }): (event: any, config?: {}) => null | undefined; declare function createHideHandler({ action, target, getDelay, timeoutState }: { action: any; target: any; getDelay: any; timeoutState: any; }): (event: any, config?: {}) => null | undefined; declare function createToggleHandler({ onHide, onShow, target, getActiveTargetNode, getVisible, }: { onHide: any; onShow: any; target: any; getActiveTargetNode: any; getVisible: any; }): (event: any) => null | undefined; export { createShowHandler, createHideHandler, createToggleHandler };