/** * @typedef AddAttributesToSVGElementParams * @property {string | Record=} attribute * @property {Array>=} attributes */ export type AddAttributesToSVGElementParams = { attribute?: (string | Record) | undefined; attributes?: Array> | undefined; }; export declare const name = "addAttributesToSVGElement"; export declare const description = "adds attributes to an outer element"; /** * Add attributes to an outer element. * * @author April Arcus * * @type {import('../lib/types.js').Plugin} * @since 0.7.0 */ export declare const fn: import('../lib/types.js').Plugin;