export declare type Animation = 'Fade' | 'Slide' | 'None';
export declare class Statusbar {
    static hide(animationType?: Animation): void;
    static show(animationType?: Animation): void;
    private static setStatus;
    private static getAnimation;
}
