import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link RolesScope} for the original type. */ export type CreateRolesScope = { tenantId?: string; id: string; roleId: string; scopeId: string; }; export type RolesScope = { tenantId: string; id: string; roleId: string; scopeId: string; }; export type RolesScopeKeys = 'tenantId' | 'id' | 'roleId' | 'scopeId'; export declare const RolesScopes: GeneratedSchema;