import type { CacheIndicatorState } from '../../cache-indicator'; export declare enum Status { None = "none", Rendering = "rendering", Compiling = "compiling", Prerendering = "prerendering", CacheBypassing = "cache-bypassing", Instant = "instant" } export declare function getCurrentStatus(buildingIndicator: boolean, renderingIndicator: boolean, cacheIndicator: CacheIndicatorState, instantMode?: boolean): Status; interface StatusIndicatorProps { status: Status; onClick?: () => void; title?: string; } export declare function StatusIndicator({ status, onClick, title, }: StatusIndicatorProps): import("react/jsx-runtime").JSX.Element | null; export {};