7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
|
import type { FC } from "react";
|
||
|
|
import type { PreviewImgProps } from "../PreviewImg";
|
||
|
|
|
||
|
|
declare const TooltipPreviewImg: FC<PreviewImgProps>;
|
||
|
|
|
||
|
|
export default TooltipPreviewImg;
|