export type Principal = {
    readonly name?: string
}

export type AuthorizationRule = { access: 'permitted' | 'denied' | 'authenticated' }
