export declare type UserPermission = typeof USER_PERMISSION_OPTIONS[number]; export declare const USER_PERMISSION_OPTIONS: readonly ["creator", "moderator", "presenter", "editor", "user"]; export interface UserOptions { id: string; name: string; onTacticId?: string; onViewId?: string; onTeamId?: string; isPresenting?: boolean; permissions: Array; }