import type { GetInsightInterfaceConfigResponse } from '../../api/service/insight/get-interface/get-interface-config-response.js'; import type { ConfigurationSection, InsightConfigurationSection } from '../../state/state-sections.js'; export interface FetchInterfaceThunkReturn { /** The successful get interface response. */ response: GetInsightInterfaceConfigResponse; } export type StateNeededByFetchInterface = ConfigurationSection & InsightConfigurationSection; export declare const fetchInterface: import("@reduxjs/toolkit").AsyncThunk; dispatch?: import("redux-thunk").ThunkDispatch | undefined; serializedErrorType?: unknown; pendingMeta?: unknown; fulfilledMeta?: unknown; rejectedMeta?: unknown; }>;