/** * a user once raised an issue - they said that when you opened a popup (eg context menu) * and then clicked on a selection checkbox, the popup wasn't closed. this is because the * popup listens for clicks on the body, however ag-grid WAS stopping propagation on the * checkbox clicks (so the rows didn't pick them up as row selection selection clicks). * to get around this, we have a pattern to stop propagation for the purposes of AG Grid, * but we still let the event pass back to the body. * @param {Event} event * @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _stopPropagationForAgGrid(event: Event): void; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare function _isStopPropagationForAgGrid(event: Event): boolean;