import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const Preloader: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'span'; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'text-primary' */ iconIos?: string; /** * * @default 'text-md-light-primary dark:text-md-dark-primary' */ iconMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default Preloader;