import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * Master-Detail relationship data structure */ export interface MasterDetailValue { id: string; label: string; [key: string]: any; } /** * Master-Detail field widget - manages one-to-many relationships * Displays related records with add/remove capabilities */ export declare function MasterDetailField({ value, onChange, field, readonly, className, ...props }: FieldWidgetComponentProps): React.JSX.Element;