import { JsonFormsCellRendererRegistryEntry, JsonFormsRendererRegistryEntry, JsonSchema, UISchemaElement } from '@jsonforms/core'; import { GroupProps, StackProps } from '@mantine/core'; export type MantineLayoutRendererProps = { visible: boolean; elements: UISchemaElement[]; schema: JsonSchema; path: string; enabled?: boolean; direction?: 'row' | 'column'; renderers?: JsonFormsRendererRegistryEntry[]; cells?: JsonFormsCellRendererRegistryEntry[]; } & Partial;