/** * Initializes the toggle for button group elements that have the dynamically added [data-kt-buttons="true"] attribute. * @param {string|HTMLElement} element CSS selector string or HTMLElement. * @example * HTML: * ```html * *
* *
* * * *
* * *
* * * *
* *
* * ``` * * JS: * ```js * import {initializers} from 'metronic-extension'; * * // Initializes the toggle for button group elements that have the dynamically added [data-kt-buttons="true"] attribute. * initializers.initBtnToggle(document.body); * ``` */ declare const _default: (element: string | HTMLElement) => void; export default _default;