interface SchemaFormFieldProps { name: string; schema: any; value: string; onChange: (value: string) => void; required?: boolean; disabled?: boolean; rootSchema?: any; } export declare function SchemaFormField({ name, schema, value, onChange, required, disabled, rootSchema, }: SchemaFormFieldProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SchemaFormField.d.ts.map