import { KVL } from '../../ldaccess/KVL'; import { BlueprintConfig, IBlueprintItpt, OutputKVMap } from '../../ldaccess/ldBlueprint'; import { ILDOptions } from '../../ldaccess/ildoptions'; import { LDConnectedState, LDConnectedDispatch, LDOwnProps, LDLocalState } from '../../appstate/LDProps'; import { Component } from 'react'; export declare const CORE_IFRAME_NAME = "metaexplorer.io/basichtml/iframe"; export declare const CORE_IFRAME_CFG: { subItptOf: string; canInterpretType?: string; nameSelf: string; ownKVLs?: KVL[]; crudSkills: string; inKeys: (string | import("../../ldaccess").ObjectPropertyRef)[]; }; export interface IFrameState extends LDLocalState { } export declare class PureIFrameComponent extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: IFrameState): null | IFrameState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; constructor(props: any); render(): JSX.Element; }