import { type IUserWorkspaceSettings } from "@gooddata/sdk-backend-spi"; import { type CatalogItem, type GenAIObjectType, type IAllowedRelationshipType, type IColorPalette, type IGenAIUserContext } from "@gooddata/sdk-model"; import type { IKdaDefinition } from "@gooddata/sdk-ui-dashboard"; import { type ContextObjectsState, type SelectedContext } from "../../types.js"; import { type RootState } from "../types.js"; export declare const isOpenSelector: (state: RootState) => boolean; export declare const isFullscreenSelector: (state: RootState) => boolean; export declare const isHistorySelector: (state: RootState) => boolean; export declare const colorPaletteSelector: (state: RootState) => IColorPalette | undefined; export declare const settingsSelector: (state: RootState) => IUserWorkspaceSettings | undefined; export declare const isPreviewSelector: (state: RootState) => boolean; export declare const agentSwitchingEnabledSelector: (state: RootState) => boolean; export declare const contextSetupEnabledSelector: (state: RootState) => boolean; export declare const reasoningEffortEnabledSelector: (state: RootState) => boolean; export declare const agentSwitchingActiveSelector: (state: RootState) => boolean; export declare const allowInteractionIntelligenceSelector: (state: RootState) => boolean; export declare const interactionIntelligenceEnabledSelector: (state: RootState) => boolean; export declare const interactionIntelligenceTimelineEnabledSelector: (state: RootState) => boolean; export declare const objectTypesSelector: (state: RootState) => GenAIObjectType[] | undefined; export declare const allowedRelationshipTypesSelector: (state: RootState) => IAllowedRelationshipType[] | undefined; export declare const tagsSelector: (state: RootState) => { includeTags: string[] | undefined; excludeTags: string[] | undefined; }; export declare const catalogItemsSelector: (state: RootState) => CatalogItem[]; export declare const contextObjectsSelector: (state: RootState) => ContextObjectsState; export declare const contextObjectsSearchSelector: (state: RootState) => string; export declare const inputValueSelector: (state: RootState) => string; export declare const keyDriverAnalysisSelector: (state: RootState) => IKdaDefinition | undefined; export declare const keyDriverAnalysisMinimizedSelector: (state: RootState) => boolean | undefined; export declare const userContextSelector: (state: RootState) => IGenAIUserContext | undefined; export declare const ambientContextSelector: (state: RootState) => IGenAIUserContext | undefined; export declare const selectedContextSelector: (state: RootState) => SelectedContext | undefined; export declare const ambientContextLoadingSelector: (state: RootState) => boolean | undefined; export declare const hasPinnedContextSelector: (state: RootState) => boolean; //# sourceMappingURL=chatWindowSelectors.d.ts.map