/**
 * @typedef Change
 * @property {string} from
 * @property {string} to
 */
/**
 * @type {Array<Change>}
 */
export const matches: Array<Change>;
export type Change = {
    from: string;
    to: string;
};
