{}} />
* ```
*
* Docs:
*
* - [How debounce works in server actions](https://brisa.build/api-reference/extended-props/debounceEvent)
*/
debounceMouseMove?: number | undefined;
/**
* The `indicate[Event]` attribute is an `IndicatorSignal` to connect it to an event
* that fires a server action.
*
* Default: undefined
*
* Example:
*
* ```tsx
* const indicator = indicate('some-action-id');
* // ...
*
* ```
*
* Docs:
*
* - [How to use `indicate`](https://brisa.build/api-reference/extended-props/indicateEvent)
*/
indicateMouseMove?: IndicatorSignal | undefined;
/**
* The onMouseMove event is fired when a pointing device is moved over an element.
*
* *🚨 In server, the `preventDefault` method is already called, so you don't need to call it.*
*
* - [MDN reference](https://developer.mozilla.org/en-US/docs/Web/API/Element/mousemove_event)
*/
onMouseMove?: MouseEventHandler
| undefined;
/**
* Milliseconds to wait before executing the `onMouseOut` server action.
*
* This is NOT a standard HTML attribute, and is not possible to use
* in web components. It is a Brisa-specific attribute for server components.
*
* Default: 0
*
* Example:
*
* ```tsx
* {}} />
* ```
*
* Docs:
*
* - [How debounce works in server actions](https://brisa.build/api-reference/extended-props/debounceEvent)
*/
debounceMouseOut?: number | undefined;
/**
* The `indicate[Event]` attribute is an `IndicatorSignal` to connect it to an event
* that fires a server action.
*
* Default: undefined
*
* Example:
*
* ```tsx
* const indicator = indicate('some-action-id');
* // ...
*