import { JsonSchema } from 'fastapi-rtk/api-types'; import { MRT_RowData } from '../../../../.external/lib/mantine-react-table'; /** * Converts an item object to a form inputs object using the jsonforms schema. * * @param item - The item object to be converted. * @param schema - The JsonForms JSON schema defining the structure and properties of the item. * @returns The converted form inputs object. */ export declare function convertToFormInputs(item: MRT_RowData, schema: JsonSchema): MRT_RowData;