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 SectionedListName = "metaexplorer.io/material-design/SectionedList"; export declare const sectionHeadings = "section-headings"; export declare const sectionElements = "section-elements"; export declare const sectionedListItptKeys: string[]; export declare const sectionedListValueKeys: string[]; export declare const sectionedListInputKeys: string[]; export declare const ownKVLs: KVL[]; export declare const SectionedListCfg: BlueprintConfig; export declare type SectionedListState = LDLocalState; export declare abstract class AbstractSectionedList extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: SectionedListState): null | SectionedListState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; protected renderSub: any; constructor(props: any); render(): ReactNode; }