import * as React from "react";
import { StatusBarProps } from "./types";
export declare class StatusBar extends React.Component<StatusBarProps> {
    private static propsStack;
    private static immediate;
    private static mergedProps;
    private static createStackEntry;
    static currentHeight: number | undefined;
    static pushStackEntry(props: StatusBarProps): StatusBarProps;
    static popStackEntry(entry: StatusBarProps): void;
    static replaceStackEntry(entry: StatusBarProps, props: StatusBarProps): StatusBarProps;
    private static updatePropsStack;
    private stackEntry;
    componentDidMount(): void;
    componentDidUpdate(): void;
    componentWillUnmount(): void;
    render(): React.ReactNode;
}
