import { type ProIconReplaceConfig } from './types'; /** * Converts all elements with the `proicon` attribute (which can be customised in the config) on the page to an icon corresponding to the attribute value. * Note that this only works in a browser environment, and also breaks tree-shaking. * @param rootElm The element to search inside for children with the `proicon` attribute. Defaults to `document.body`. * @param config An optional configuration to customise the behaviour of the replace method * * [Documentation](https://procode-software.github.io/proicons/docs/javascript-api#replace) */ export declare function replace(rootElm?: Element, config?: ProIconReplaceConfig): void;