import type { IconColor, IconSize } from '../Icon'; import type { SVGAttributes } from 'vue'; export type LoadingType = 'spinner' | 'placeholder'; export type SbLoadingProps = { type?: LoadingType; size?: IconSize; modelValue?: number; color?: IconColor; uiBlock?: boolean; ariaHidden?: 'true' | 'false'; } & /* @vue-ignore */ SVGAttributes;