type TagsMapLike = { forEach: (callback: (value: string, key: string) => void) => void; }; /** * Converts a map-like collection of tag key/value pairs into a plain record object. * * @param tagsMap - A map-like object containing tag values keyed by tag name. * @returns A record containing the tag key/value pairs, or `undefined` if the input * is `undefined` or if no tags are present. */ export declare function mapToRecord(tagsMap?: TagsMapLike): Record | undefined; export {};