import { TextFieldProps } from '@mui/material';
export type RORLinkedInstitutionFieldProps = {
    value?: string;
    onChange?: (value: string | undefined, rorIdentifier?: string) => void;
    error?: TextFieldProps['error'];
};
/**
 * Provides a text field for entering an organization name with an autocomplete dropdown of ROR organizations, fetched from the
 * ROR API.
 * @param props
 * @constructor
 */
export default function RORInstitutionField(props: RORLinkedInstitutionFieldProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=RORInstitutionField.d.ts.map