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 createLayoutBpCfg: (nameSelf: string) => BlueprintConfig; export interface LayoutComponentState extends LDLocalState { } export declare abstract class PureLayoutComponent extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: LayoutComponentState): null | LayoutComponentState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; styleClassName: string; protected renderInputContainer: any; constructor(props: any); render(): JSX.Element; } export declare const LayoutVHCenteredColumnName = "metaexplorer.io/layout/vh-centered-column"; export declare class PureVHcenteredColumnLayout extends PureLayoutComponent { styleClassName: string; }