import type { InsightInterface } from '../../api/service/insight/get-interface/get-interface-config-response.js'; import type { InsightAPIErrorStatusResponse } from '../../api/service/insight/insight-api-client.js'; export declare const getInsightInterfaceInitialState: () => InsightInterfaceState; export interface InsightInterfaceState { loading: boolean; config?: { contextFields: Record; interface?: InsightInterface; }; error?: InsightAPIErrorStatusResponse; }