import { Practitioner } from 'fhir/r4b';
import { AccessPolicy } from './AccessPolicy';
export interface DeveloperInviteParams {
    /**
     * The email with which the developer was invited.
     */
    email: string;
    /**
     * A valid FHIR Practitioner Resource JSON object. The FHIR Practitioner resource will be created to represent the developer in the FHIR store.
     */
    practitioner: Practitioner;
    /**
     * A list of ids of roles to be assigned to the developer.
     */
    roles?: string[];
    accessPolicy?: AccessPolicy;
}
