tinacms
Version:
[](https://github.com/tinacms/tinacms/blob/main/LICENSE) [](https://www.npmjs.com/package/tinacms) [![Bui
33 lines (32 loc) • 1.07 kB
TypeScript
import { Form } from '../../forms';
import * as React from 'react';
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) => React.JSX.Element;
export declare const ListHeader: ({ children }: {
children?: any;
}) => React.JSX.Element;
export declare const ListMeta: ({ children }: {
children?: any;
}) => React.JSX.Element;
export declare const ListLabel: ({ children }: {
children?: any;
}) => React.JSX.Element;
export declare const ListPanel: ({ className, ...props }: {
[x: string]: any;
className?: string;
}) => React.JSX.Element;
export declare const EmptyList: ({ message }: {
message?: string;
}) => React.JSX.Element;
export {};