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 myTemplateCfg: BlueprintConfig; export interface MyTemplateState extends LDLocalState { } export declare class PureMyTemplate extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: MyTemplateState): null | MyTemplateState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; protected renderInputContainer: any; constructor(props: any); outputMemberB: () => void; render(): JSX.Element; }