import type { ChannelPermission } from './ChannelPermission'; /** * lists all the publish and subscribe topics an app has access to. Restrictions on topic elements are taken into account. */ export declare type Permissions = { subscribe?: Array>; publish?: Array>; };