/**
 * Naming scheme to match strings used on target
 */
declare enum DirectorModes {
    Speaker = "speaker-centric",
    Collaboration = "default"
}
export default DirectorModes;
