import { CrudTypeOf } from "../../crud.js"; //#region src/interface/crud/emails.d.ts declare const sentEmailReadSchema: import("yup").ObjectSchema<{ id: string; subject: string; sent_at_millis: number; to: string[] | undefined; error: {} | null | undefined; }, import("yup").AnyObject, { id: undefined; subject: undefined; sent_at_millis: undefined; to: undefined; error: undefined; }, "">; declare const internalEmailsCrud: import("../../crud").CrudSchemaFromOptions<{ adminReadSchema: import("yup").ObjectSchema<{ id: string; subject: string; sent_at_millis: number; to: string[] | undefined; error: {} | null | undefined; }, import("yup").AnyObject, { id: undefined; subject: undefined; sent_at_millis: undefined; to: undefined; error: undefined; }, "">; docs: { adminList: { hidden: true; }; }; }>; type InternalEmailsCrud = CrudTypeOf; //#endregion export { InternalEmailsCrud, internalEmailsCrud, sentEmailReadSchema }; //# sourceMappingURL=emails.d.ts.map