import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link ApplicationsRole} for the original type. */ export type CreateApplicationsRole = { tenantId?: string; id: string; applicationId: string; roleId: string; }; export type ApplicationsRole = { tenantId: string; id: string; applicationId: string; roleId: string; }; export type ApplicationsRoleKeys = 'tenantId' | 'id' | 'applicationId' | 'roleId'; export declare const ApplicationsRoles: GeneratedSchema;