import React from 'react'; import '../g.scss'; declare function BorderImg(props: IBorderImg): React.JSX.Element; export default BorderImg; export interface IBorderImg { value?: string; imgList: IImgList[]; change?: Function; wrapStyle?: React.CSSProperties; } export interface IImgList { key: string; type?: string; imgUrl?: string; }