/** * Checks whether the user interacted with an interactive element within a row. * @param row - The row with which the user interacted with. * @param target - The target element of the interaction. * @returns true if the target is interactive, false otherwise. */ export declare function isTargetInteractive(row: Element, target: HTMLElement | SVGElement): boolean;