import { ValueOf } from '../internal/types'; export interface Status { type?: StatusType; class?: string; scale: number; [key: string]: unknown; } export declare const StatusType: { readonly Primary: "primary"; readonly Success: "success"; readonly Warning: "warning"; readonly Error: "error"; readonly Info: "info"; readonly Pending: "pending"; }; export type StatusType = ValueOf; export declare const StatusBarSize: { readonly Medium: "medium"; readonly Small: "small"; }; export type StatusBarSize = ValueOf;