import type { CountryPrefixType } from '../../data-definitions/countryDefinitions.js'; /** * @param `input` – For example "DE:123", "DE:123[4.4]", "123-45", "DE:123,123-45;DE:567" * @param `countryPrefix` – For example "DE", see `countryPrefixes` */ export declare const removeCountryPrefix: (input: string, countryPrefix: CountryPrefixType) => string; /** * @param `input` – For example `["DE:111","1212-12","DE:222"]` * @param `countryPrefix` – For example "DE", see `countryPrefixes` */ export declare const removeCountryPrefixes: (input: string[], countryPrefix: CountryPrefixType) => string[]; //# sourceMappingURL=removeCountryPrefix.d.ts.map