import React from 'react'; export declare const getHeight: () => number; export interface CommandHint { key: string; label: string; } export interface FooterState { hints?: CommandHint[]; itemCount?: number; itemLabel?: string; /** Attached to a pre-existing stack — quitting leaves services running. */ attached?: boolean; } export declare const Footer: React.FC;