import { GeneratedSchema } from './../foundations/index.js'; /** * The resource scopes (permissions) assigned to an application's consent request. * * @remarks This is a type for database creation. * @see {@link ApplicationUserConsentResourceScope} for the original type. */ export type CreateApplicationUserConsentResourceScope = { tenantId?: string; /** The globally unique identifier of the application. */ applicationId: string; /** The globally unique identifier of the resource scope. */ scopeId: string; }; /** The resource scopes (permissions) assigned to an application's consent request. */ export type ApplicationUserConsentResourceScope = { tenantId: string; /** The globally unique identifier of the application. */ applicationId: string; /** The globally unique identifier of the resource scope. */ scopeId: string; }; export type ApplicationUserConsentResourceScopeKeys = 'tenantId' | 'applicationId' | 'scopeId'; export declare const ApplicationUserConsentResourceScopes: GeneratedSchema;