import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link UsersRole} for the original type. */ export type CreateUsersRole = { tenantId?: string; id: string; userId: string; roleId: string; }; export type UsersRole = { tenantId: string; id: string; userId: string; roleId: string; }; export type UsersRoleKeys = 'tenantId' | 'id' | 'userId' | 'roleId'; export declare const UsersRoles: GeneratedSchema;