export interface GlobalOptions {
  apiKey?: string;
  format?: 'human' | 'json' | 'csv';
  color?: boolean;
  debug?: boolean;
  dbHost?: string;
  globalHost?: string;
  workspace?: string;
  db?: string;
} 