/** * Copyright 2021-2024 ioBroker GmbH * * MIT License * */ import React from 'react'; import type { ThemeType, ThemeName } from '../../types'; interface LoaderVendorProps { /** The size in pixels of this loader. */ size?: number; /** The chosen theme type. */ themeType?: ThemeType; /** The chosen theme name. */ themeName?: ThemeName; /** Background color */ backgroundColor?: string; /** Background image URL */ backgroundImage?: string; } export declare function LoaderVendor(props: LoaderVendorProps): React.JSX.Element; export {};