import type { Attributes } from './types.js';
/**
 * Parse attributes string into an object.
 *
 * @param input - Attributes string.
 * @returns Parsed attributes as key-value pairs.
 */
export default function parseAttrs(input: string): Attributes;
export type { Attributes, Token, TokenType } from './types.js';