UNPKG

tinacms

Version:

> The Fastest Way to Edit Next.js Content

12 lines (11 loc) 328 B
import { FC } from 'react'; import { Form } from '../forms'; export interface FormActionMenuProps { form: Form; actions: any[]; } export declare const FormActionMenu: FC<FormActionMenuProps>; export declare const ActionButton: ({ className, ...props }: { [x: string]: any; className?: string; }) => JSX.Element;