export type CarbonThemeType = 'white' | 'g10' | 'g90' | 'g100'; export interface GraphiQLConfig { showExplorerHeader?: boolean; endpoint: string; headers?: Record; defaultQuery?: string; onEditQuery?: (query: string) => void; /** * Theme configuration for the GraphiQL interface. * Accepts values like 'white', 'g10', 'g90', 'g100'. * This will override the Carbon theme context if provided. */ theme?: CarbonThemeType; }