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, ReactNode } from 'react'; export declare const simpleTextTableCfg: BlueprintConfig; export declare type SimpleTextTableState = LDLocalState; export declare abstract class AbstractSimpleTextTable extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: SimpleTextTableState): null | SimpleTextTableState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; constructor(props: any); render(): ReactNode; }