/** Represents meeting booking options */
export interface MeetingCapacities {
    /** Whether or not it is possible to book a meeting online */
    eRdv: boolean;
    /** Whether or not it is possible to be be called by phone to book a meeting */
    phoneCall: boolean;
}
//# sourceMappingURL=MeetingCapacities.d.ts.map