import { LDConnectedDispatch, LDConnectedState, LDLocalState, LDOwnProps } from "../../../appstate"; import { BlueprintConfig, IBlueprintItpt, KVL, ILDOptions, OutputKVMap } from "../../../ldaccess"; import { Component, ReactNode } from "react"; export declare const SingleValueSelectorBpCfg: BlueprintConfig; export declare type SingleValueSelectorState = LDLocalState; export declare abstract class AbstractSingleValueSelector extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: SingleValueSelectorState): null | SingleValueSelectorState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; constructor(props: any); render(): ReactNode; }