export declare const appointmentNotesOperationsMockData: {
    create: {
        note: {
            id: string;
            body: string;
            contactId: string;
            userId: string;
            appointmentId: string;
            createdAt: string;
            updatedAt: string;
        };
    };
    update: {
        note: {
            id: string;
            body: string;
            contactId: string;
            userId: string;
            appointmentId: string;
            createdAt: string;
            updatedAt: string;
        };
    };
    getAll: {
        notes: {
            id: string;
            body: string;
            contactId: string;
            userId: string;
            appointmentId: string;
            createdAt: string;
            updatedAt: string;
        }[];
        meta: {
            total: number;
            currentPage: number;
            nextPage: null;
            prevPage: null;
            limit: number;
        };
    };
    delete: {
        success: boolean;
        message: string;
    };
};
