import { Scale } from '../../variations';
export declare const STATUS_INDICATOR_SCALES: readonly ["sm", "md", "lg"];
export type StatusIndicatorScale = Extract<Scale, (typeof STATUS_INDICATOR_SCALES)[number]>;
export declare const STATUS_INDICATOR_STATUSES: readonly ["offline", "online", "away", "do-not-disturb", "busy", "unknown", "error", "success", "warning", "in-progress", "information", "discovery", "planet", "ai"];
export type StatusIndicatorStatus = (typeof STATUS_INDICATOR_STATUSES)[number];
export type StatusIndicatorProperties = {
    /**
     * Status indicator scale
     */
    scale?: StatusIndicatorScale;
    /**
     * Status indicator status
     */
    status?: StatusIndicatorStatus;
};
