export declare enum QueryContextTypes { user = 0, workspace = 1 } export interface QueryContext { type: QueryContextTypes; } export interface QueryUserContext extends QueryContext { } export interface QueryWorkspaceContext extends QueryContext { workspaceId: string; }