export declare class Status {
el: HTMLIfxStatusElement;
/** Text label displayed inside the status component. */
readonly label: string;
/** If true, shows a border around the status. */
readonly border: boolean;
/** Color token used for the status (e.g. orange-500). */
readonly color: string;
componentDidLoad(): Promise;
render(): any;
}