import { VirtualChildComponent } from '@easytwin/runtime'; import * as React from 'react'; interface CustomAttributesValueFormProps { attribute: Record; comp: VirtualChildComponent; } export default function CustomAttributeValueForm({ attribute, comp, }: CustomAttributesValueFormProps): React.JSX.Element; export {};