//#region src/deprecated.d.ts /** * Names of all deprecated icon exports in this package. * * Use this to filter deprecated aliases from icon lists without maintaining * a separate copy in your app. * * @example * ```ts * import * as icons from 'react-web3-icons'; * import { DEPRECATED_ICON_NAMES } from 'react-web3-icons'; * * // Get current (non-deprecated) icon names, excluding non-icon exports * const activeIconNames = Object.keys(icons).filter( * name => * !DEPRECATED_ICON_NAMES.has(name) && * name !== 'DEPRECATED_ICON_NAMES', * ); * ``` */ declare const DEPRECATED_ICON_NAMES: ReadonlySet; //#endregion export { DEPRECATED_ICON_NAMES }; //# sourceMappingURL=deprecated.d.mts.map