/// /** * Check the existance of a specific meta property inside all metatags. * * @example * ``` * const property = 'og:title'; * const metatags = [{ propertyType: 'property', propertyDescription: 'og:title' } ]; * Result of categories = 'Title of the page'; * * ``` * * @param property - Selected meta property. * @param metatags - List of all metatags for a specific page. * * @returns - Metatag content for a specific metatag. */ declare const getMetatag: ((property: any, metatags: any) => any) & import("lodash").MemoizedFunction; export default getMetatag;