import React from "react"; export interface FrpPreviewImgProps { img?: string; link?: string; title?: string; frpColor?: string; } declare const FrpPreviewImg: ({ img, title, frpColor }: FrpPreviewImgProps) => React.JSX.Element; export default FrpPreviewImg;