export declare type Metadata = {
    title: string | null;
    description: string | null;
    img: string | null;
    domain: string;
    requestUrl: string;
};
export default function useLinkPreview(url: string): {
    metadata: Metadata | null;
    isLoading: boolean;
    isError: Error | null;
};
