///
///
export type PreviewUrlType = {
title?: string;
url?: string;
image?: string;
description?: string;
isFetching?: boolean;
};
export declare const usePreviewUrl: (bannedWords: string[], onChange: (v: string) => void) => {
previewUrl: PreviewUrlType;
setPreviewUrl: import("react").Dispatch>;
invalidUrls: string[];
debounceInputModify: import("lodash").DebouncedFunc<(v: string) => void>;
fetchPreviewData: (url: string) => void;
};