import type { SignStateType } from '../data-definitions/TrafficSignDataTypes.js'; import type { CountryReferenceLinkConfig } from './types.js'; type SignWithId = SignStateType & { signId: string; }; export type SignReferenceLinks = { osmWikiTableUrl: string; wikipediaTableUrl?: string; }; export declare const buildSignReferenceLinks: (sign: SignWithId, config: CountryReferenceLinkConfig) => { osmWikiTableUrl: string; wikipediaTableUrl: string | undefined; }; export {}; //# sourceMappingURL=buildSignReferenceLinks.d.ts.map