UNPKG

burdy

Version:

Open Source Headless Platform

17 lines (16 loc) 426 B
import React from 'react'; interface DynamicReferenceProps { field: any; name?: string; } declare const DynamicReference: React.ForwardRefExoticComponent<DynamicReferenceProps & { postsContext?: { defaultAdditionalData?: {}; children: any; } & Partial<{ disable?: boolean; }>; } & Partial<{ unwrap?: boolean; }> & React.RefAttributes<unknown>>; export default DynamicReference;