export interface OpenGraphResult { url: string; raw: string | null; title: string; description: string; image: string | null; video: string | null; [key: string]: string | number | null; } export interface FetchHeaders { [key: string]: string; } export declare const metaTags: Record; export declare const queryParams: (str: string) => Record; export declare const fetchRaw: (url: string, headers?: FetchHeaders) => Promise; export declare const fetch: (url: string, headers?: FetchHeaders, includeRaw?: boolean) => Promise; declare const _default: { fetch: (url: string, headers?: FetchHeaders, includeRaw?: boolean) => Promise; fetchRaw: (url: string, headers?: FetchHeaders) => Promise; }; export default _default;