import { MeetingSlot } from './MeetingSlot';
/** Parameters to book a time slot for a meeting */
export interface BookMeetingSlot {
    /** Whether or not to book a fake meeting slots (if no slots are available) */
    fakeMeeting: boolean;
    /** The time slot to book, null if fakeMeeting is true */
    meetingSlot?: MeetingSlot;
    /** The name of the customer */
    name?: string;
}
//# sourceMappingURL=BookMeetingSlot.d.ts.map