import { Component } from "react"; import { BlueprintConfig } from "../../ldaccess/ldBlueprint"; import { KVL, IBlueprintItpt, OutputKVMap, ILDOptions } from "../../ldaccess"; import { LDConnectedDispatch, LDConnectedState, LDLocalState, LDOwnProps } from "../../appstate"; export declare const ANALYTICS_HR_NAME = "metaexplorer.io/analytics/HRVisibilityDetector"; export declare const HR_IFRAME_CFG: { subItptOf: string; canInterpretType?: string; nameSelf: string; ownKVLs?: KVL[]; crudSkills: string; inKeys: (string | import("../../ldaccess").ObjectPropertyRef)[]; }; export interface HRState extends LDLocalState { } export declare class PureHRAnalyticsComponent extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: HRState): null | HRState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; constructor(props: any); onTrigger: (isVisible: boolean) => void; render(): JSX.Element; }