/** * Design documents for _users database. * Provides views for efficient user lookups by email and tokens. */ /** * Design document for user lookups in _users database. */ export declare const usersDesignDoc: { _id: string; views: { /** * Index users by email address. */ by_email: { map: string; }; /** * Index users by verification token. */ by_verification_token: { map: string; }; /** * Index users by password reset token. */ by_reset_token: { map: string; }; }; language: string; }; /** * Apply design documents to _users database. * Safe to call multiple times - will only update if changed. */ export declare function applyUsersDesignDocs(): Promise; //# sourceMappingURL=userDesignDocs.d.ts.map