import * as React from "react";
import { RcsbFvStateInterface } from "../../../../../RcsbFvState/RcsbFvStateInterface";
interface ChainDisplayInterface {
    stateManager: RcsbFvStateInterface;
    label: string;
}
interface ChainDisplayState {
    display: 'visible' | 'hidden';
}
export declare class ChainDisplayComponent extends React.Component<ChainDisplayInterface, ChainDisplayState> {
    readonly state: ChainDisplayState;
    private subscription;
    render(): React.ReactElement;
    componentDidMount(): void;
    componentWillUnmount(): void;
    private subscribe;
    private changeDisplay;
    private componentInfo;
    private requestInfo;
}
export {};
