import { RoleStub } from './RoleStub';
export interface Project {
    id: string;
    name: string;
    description: string;
    /**
     * Allows users to self-register to applications in this project.
     */
    signupEnabled: boolean;
    /**
     * Indicates whether the project is in sandbox mode - currently for testing eRx features without affecting real medical services.
     */
    sandbox: boolean;
    defaultPatientRole?: RoleStub;
    defaultSSOUserRole?: RoleStub;
    fhirVersion: 'r4' | 'r5';
}
