import { AllTags } from './types.js'; export type RawAttributes = { [key: string]: string | number; } & { style?: string; }; type Attributes = Record; type StyleObject = Record; export default function mapAttribute(originalTag: AllTags, attrs: RawAttributes | undefined, preserveAttributes: Array, getPropInfo: (originalTag: AllTags, attributeName: string) => { name: string; isBoolean: boolean; }): Attributes; export {};