import { User } from "../../../.."; import { DeleteResponse } from "../../../../types/common"; export declare const unauthenticatedUserRoutes: (app: any) => void; declare const _default: (app: any) => any; export default _default; /** * @schema AdminUserRes * type: object * required: * - user * properties: * user: * description: "User details." * $ref: "#/components/schemas/User" */ export type AdminUserRes = { user: Omit; }; /** * @schema AdminUsersListRes * type: object * required: * - users * properties: * users: * type: array * description: "An array of users details." * items: * $ref: "#/components/schemas/User" */ export type AdminUsersListRes = { users: Omit[]; }; /** * @schema AdminDeleteUserRes * type: object * required: * - id * - object * - deleted * properties: * id: * type: string * description: The ID of the deleted user. * object: * type: string * description: The type of the object that was deleted. * default: user * deleted: * type: boolean * description: Whether or not the items were deleted. * default: true */ export type AdminDeleteUserRes = DeleteResponse; export * from "./reset-password"; export * from "./reset-password-token"; export * from "./create-user"; export * from "./delete-user"; export * from "./get-user"; export * from "./list-users"; export * from "./update-user";