import React from 'react'; import { WebComponentProps } from 'oak-frontend-base'; import { EntityDict } from '../../oak-app-domain'; type RowItem = { aId: string; aName: string; typeRecords: TypeRecord; defaultOptions: { label: string; value: string; }[]; defaultValue: string; }; type TypeRecord = Record; type PassportOption = { label: string; value: string; apId: string; disabled: boolean; disabledTip?: string; }; export default function render(props: WebComponentProps void; checkLastOne: (aId: string, pId: string) => boolean; onSelectChange: (aId: string, addPId?: string, removeApId?: string) => void; }>): React.JSX.Element; export {};