/// import { Color } from '@harnessio/design-system'; export interface StatusBarProps { gradient?: string; background?: Color; label?: string; height: number; width: number; } export declare function StatusBar(props: StatusBarProps): JSX.Element;