UNPKG

kolenkainc-honohub-react

Version:

React admin panel for honohub

6 lines (5 loc) 271 B
import type { CollectionType } from "../../types"; export type DocumentForm = Pick<CollectionType, "fields" | "slug"> & { isLoading: boolean; }; export declare function DocumentForm({ slug, fields, isLoading }: DocumentForm): import("react/jsx-runtime").JSX.Element;