import type { CountryPrefixType } from './data-definitions/countryDefinitions.js'; import type { SignStateType, SignType } from './data-definitions/TrafficSignDataTypes.js'; type SignWithImage = SignType | SignStateType; /** Wiki SVG file is known absent (`image: 'missing'` in catalogue). */ export declare const isSignSvgMissing: (sign: SignWithImage) => boolean; export declare const hasBundledSvg: (countryPrefix: CountryPrefixType, signOrOsmValuePart: SignWithImage | string) => boolean; /** No bundled SVG in the tool (missing loader), regardless of wiki flag. */ export declare const isSignSvgUnavailable: (countryPrefix: CountryPrefixType, sign: SignWithImage) => boolean; export {}; //# sourceMappingURL=signSvgAvailability.d.ts.map