export declare const mockAppointmentResponse: {
    appointment: {
        id: string;
        calendarId: string;
        contactId: string;
        locationId: string;
        title: string;
        appointmentStatus: string;
        assignedUserId: string;
        address: string;
        notes: string;
        startTime: string;
        endTime: string;
        dateCreated: string;
        dateUpdated: string;
    };
};
export declare const mockBlockedSlotResponse: {
    blockedSlot: {
        id: string;
        calendarId: string;
        userId: string;
        locationId: string;
        title: string;
        startTime: string;
        endTime: string;
        dateCreated: string;
        dateUpdated: string;
    };
};
export declare const mockBlockedSlotsListResponse: {
    blockedSlots: {
        id: string;
        calendarId: string;
        userId: string;
        locationId: string;
        title: string;
        startTime: string;
        endTime: string;
        dateCreated: string;
        dateUpdated: string;
    }[];
    meta: {
        total: number;
        count: number;
        currentPage: number;
        nextPageUrl: null;
        prevPageUrl: null;
    };
};
export declare const mockDeleteEventResponse: {
    success: boolean;
    message: string;
};
