UNPKG

tinacms

Version:

> The Fastest Way to Edit Next.js Content

12 lines (11 loc) 378 B
import * as React from 'react'; import type { TinaCMS } from '../../../tina-cms'; import type { ReferenceFieldProps } from './index'; import { Field } from '../../../forms'; interface ReferenceSelectProps { cms: TinaCMS; input: any; field: ReferenceFieldProps & Field; } declare const ReferenceSelect: React.FC<ReferenceSelectProps>; export default ReferenceSelect;