import { LinkCardData, LinkCardFetchContext, LinkCardPlugin } from '../types'; export interface UseCardFetcherOptions { context?: LinkCardFetchContext; enabled?: boolean; fallbackUrl?: string; id: string; plugin?: LinkCardPlugin; source?: string; } export interface UseCardFetcherResult { cardInfo: LinkCardData | undefined; fullUrl: string; isError: boolean; isValid: boolean; loading: boolean; ref: (node?: Element | null) => void; } export declare function useCardFetcher(options: UseCardFetcherOptions): UseCardFetcherResult; //# sourceMappingURL=useCardFetcher.d.ts.map