import { KVL } from '../../ldaccess/KVL'; import { BlueprintConfig, IBlueprintItpt, OutputKVMap } from '../../ldaccess/ldBlueprint'; import { ILDOptions } from '../../ldaccess/ildoptions'; import { LDOwnProps, LDConnectedDispatch, LDConnectedState, LDLocalState } from '../../appstate/LDProps'; import { Component } from 'react'; export declare var SingleFieldViewIntrprtrName: string; interface SingleFieldViewState { } export declare class PureSingleFieldView extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: null | LDLocalState & SingleFieldViewState): null | LDLocalState & SingleFieldViewState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; constructor(props: any); render(): JSX.Element; } export {};