import * as yup from "yup"; import * as ______crud0 from "../../crud"; import { CrudTypeOf } from "../../crud"; //#region src/interface/crud/notification-preferences.d.ts declare const notificationPreferenceCrud: ______crud0.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