import type { AppIconLinks, Link, Meta } from '../types/index.js'; import type { SEOMetadata } from '@farfetch/blackout-client'; export declare const buildMetas: (seo: SEOMetadata | null | undefined, metas: Meta[]) => ({ name: string; content: string; } | { content?: undefined; } | { [x: string]: string; content: string; })[]; export declare const buildLinks: (seo: SEOMetadata | null | undefined, appIconLinks: AppIconLinks, links: Link[]) => ({ href: string; rel: string; } | { rel: string; color: string | undefined; href: string | undefined; })[]; export declare const buildIconLinks: ({ appleIcons, icons, maskIcon, }: Partial<{ appleIcons: AppIconLinks['appleIcons']; icons: AppIconLinks['icons']; maskIcon: AppIconLinks['maskIcon']; }>) => ({ rel: string; href: string; sizes: string; } | { rel: string; color: string | undefined; href: string | undefined; })[];