UNPKG

@wulperstudio/cms

Version:
13 lines (12 loc) 266 B
import React from 'react'; interface TagModel { text: string; quantity: string | number; } interface BlockMapModel { background?: string; href?: string; tags?: Array<TagModel>; } export declare const BlockMap: React.FC<BlockMapModel>; export {};