import { ComponentInterface } from '../../stencil-public-runtime'; export declare class BiSpinner implements ComponentInterface { private inheritedAttributes; el: HTMLBiSpinnerElement; /** * The color of the spinner. * @default 'inherit' */ color?: 'inherit' | 'black'; /** * The size of the spinner. Can be 'small', 'medium', or 'large'. * It sets the font-size as the width and height is `1em`. If not set, the spinner will inherit the font size of its parent. */ size?: 'small' | 'medium' | 'large' | 'xl' | '2xl'; componentWillLoad(): void; render(): any; }