import React from "react"; import "../FulFillCardVer2.scss"; declare type item = { image?: string; badge?: string; name?: string; link?: string; sku?: string; type?: string; weight?: string; }; declare type FulFillCardVer2Props = { text1?: string; text2?: string; textcolumn1?: string; textcolumn2?: string; textcolumn3?: string; items?: item[]; text3?: string; text4?: string; }; declare const FulFillCardVer2: React.SFC; export default FulFillCardVer2;