/** * Migration unit: Typography token renames for 3.0 * * The typography token naming convention changed from * `[name]-[weight]-[size]` to `[name]-[size]-[weight]`. This unit * handles both the renames (safe auto-fix) and the deletions (manual * review with suggested replacement). * * These tokens appear as: * 1. CSS custom properties: `--gds-sys-text-body-regular-m` * 2. Style expression shorthands: `` * * Both forms are detected and migrated. The tokens may appear in CSS, * SCSS, HTML, Angular templates, TSX, TypeScript, or JS. * * @see https://github.com/seb-oss/core-digital-design/issues/701 * @module migrate/units/3/typography-token-renames */ import type { MigrationUnit } from '../../types.js'; export declare const unit: MigrationUnit;