/** * @name Spinner * @description Spinners provide a visual cue that an action is processing awaiting a course of change or a result. * @category Informational * @tags feedback, loading, progress, spinner * @example */ export declare class Spinner { elm: HTMLElement; gid: string; /** * The Icon size. * Possible values are: `"sm"`, `"md"`, `"lg"` and size in pixel. Defaults to `"md"`. */ size: 'sm' | 'md' | 'lg' | string; hideBackground: boolean; description: string; slotHasContent: boolean; private getSize; componentWillLoad(): void; render(): any; }