//#region src/parse-license-plate/parse-license-plate.d.ts /** * Removes license plate formatting characters and returns only uppercase alphanumerics. * * @param {string} value - The license plate to be parsed. * @returns {string} Up to 7 uppercase alphanumeric characters, or an empty string when the * value is not a string. * * @example * ```typescript * parseLicensePlate("abc-1234"); // "ABC1234" * ``` * * @see Official: https://www.gov.br/transportes/pt-br/assuntos/transito/conteudo-contran/resolucoes/resolucao9692022.pdf */ export declare const parseLicensePlate: (value: string) => string; //#endregion