import { JSX } from '../../../stencil-public-runtime'; import { GuxAISpinnerLoaderSize, GuxAISpinnerLoaderAccent } from './gux-ai-spinner-loader.types'; export declare class GuxAISpinnerLoader { private getI18nValue; root: HTMLElement; /** * The display size. */ size: GuxAISpinnerLoaderSize; /** * Localized text to provide an accessible label for the component. * If no screenreader text is provided, the localized string "generating" will be used by default. */ screenreaderText: string; /** * Primary accent will be used for when the spinner is typically inside a button, and ai accent is used for all other scenarios. */ accent: GuxAISpinnerLoaderAccent; componentWillLoad(): Promise; private renderSvgCircles; render(): JSX.Element; }