UNPKG

tinacms

Version:

> The Fastest Way to Edit Next.js Content

33 lines (32 loc) 1.04 kB
import * as React from 'react'; import { Form } from '../../forms'; interface FieldMetaProps extends React.HTMLAttributes<HTMLElement> { name: string; children: any; actions?: any; label?: string | boolean; description?: string; error?: string; margin?: boolean; index?: number; triggerHoverEvents?: boolean; tinaForm: Form; } export declare const ListFieldMeta: ({ name, label, description, error, margin, children, actions, index, tinaForm, triggerHoverEvents, ...props }: FieldMetaProps) => JSX.Element; export declare const ListHeader: ({ children }: { children?: any; }) => JSX.Element; export declare const ListMeta: ({ children }: { children?: any; }) => JSX.Element; export declare const ListLabel: ({ children }: { children?: any; }) => JSX.Element; export declare const ListPanel: ({ className, ...props }: { [x: string]: any; className?: string; }) => JSX.Element; export declare const EmptyList: ({ message }: { message?: string; }) => JSX.Element; export {};