export declare class SbbStatus { /** The optional icon type, which can be valid, warning or invalid. */ type: 'valid' | 'warning' | 'invalid'; /** Set the status message shown on the right side. */ message: string; /** Used to set the 'aria-label' attribute on the underlying icon element. */ ariaLabel: string; /** The 'aria-labelledby' attribute takes precedence as the element's text alternative. */ ariaLabelledby: string | null; /** The 'aria-describedby' attribute is read after the element's label and field type. */ ariaDescribedby: string | null; /** @docs-private */ get _iconClass(): { [x: string]: boolean; }; }