export default resetD3BrushStyle; export type BaseType = import("d3-selection").BaseType; /** @typedef {import('d3-selection').BaseType} BaseType */ /** * Unsets the automatically set brush style of D3. * @template {import('d3-selection').Selection} Sel * @param {Sel} el - Element which is brushed on. * @param {string} className New class name to be set. */ declare function resetD3BrushStyle>(el: Sel, className: string): void;