export declare class Spinner { el: HTMLIfxSpinnerElement; /** * Visual size of the spinner. * @default "m" */ readonly size: "s" | "m"; /** * Spinner style variant. * @default "default" */ readonly variant: "default" | "brand"; /** * Renders the spinner in inverted color for dark backgrounds. * @default false */ readonly inverted: boolean; /** * Accessible label announced by assistive technologies. * @default null */ readonly ariaLabelText: string | null; componentDidLoad(): Promise; render(): any; private getSizeClass; private getClassNames; }