export type Attrs = Record; /** * Transform an object into an HTML attributes string. The object should be * like `{ attributeName: value }`. * * @param attrs An object for the attributes. * @returns {string} A string suitable for use as HTML attributes. */ export declare function toAttributes(attrs: Attrs): string; //# sourceMappingURL=attributes.d.ts.map