import { CrudSchemaFromOptions, CrudTypeOf } from "../../crud.js"; import * as yup from "yup"; //#region src/interface/crud/notification-preferences.d.ts declare const notificationPreferenceCrud: CrudSchemaFromOptions<{ clientReadSchema: yup.ObjectSchema<{ notification_category_id: string; notification_category_name: string; enabled: boolean; can_disable: boolean; }, yup.AnyObject, { notification_category_id: undefined; notification_category_name: undefined; enabled: undefined; can_disable: undefined; }, "">; clientUpdateSchema: yup.ObjectSchema<{ enabled: boolean; }, yup.AnyObject, { enabled: undefined; }, "">; docs: { clientList: { summary: string; description: string; tags: string[]; }; clientUpdate: { summary: string; description: string; tags: string[]; }; }; }>; type NotificationPreferenceCrud = CrudTypeOf; //#endregion export { NotificationPreferenceCrud, notificationPreferenceCrud }; //# sourceMappingURL=notification-preferences.d.ts.map