import { ParsedSchema } from "../../schema/index.js"; import { ComponentProps, HTMLAttributes, ReactNode } from "react"; import { FieldKey } from "@fumari/stf"; //#region src/components/playground/inputs.d.ts export declare function ObjectInput({ field: _field, fieldName, ...props }: { field: Exclude; fieldName: FieldKey; } & ComponentProps<'div'>): import("react").JSX.Element; export declare function JsonInput({ fieldName }: { fieldName: FieldKey; }): import("react").JSX.Element; export declare function FieldInput({ field, fieldName, isRequired, ...props }: HTMLAttributes & { field: Exclude; isRequired?: boolean; fieldName: FieldKey; }): import("react").JSX.Element | undefined; export declare function FieldSet({ field: _field, fieldName, toolbar, name, isRequired, depth, slotType, collapsible, ...props }: HTMLAttributes & { isRequired?: boolean; name?: ReactNode; field: ParsedSchema; fieldName: FieldKey; depth?: number; slotType?: ReactNode; toolbar?: ReactNode; collapsible?: boolean; }): import("react").JSX.Element | undefined; //#endregion