import { SkfElement } from '@internal/components/skf-element.js'; import type { Logo } from '@skf-design-system/ui-assets'; import { type CSSResultGroup } from 'lit'; /** * The `` component is used to display the SKF logo. * * @cssproperty --skf-logo-height - The height of the logo * * @tagname skf-logo */ export declare class SkfLogo extends SkfElement { static styles: CSSResultGroup; /** The title of the logo */ title: string; /** If provided, sets color of the logo */ /** @type { "primary" | "secondary" | "inverse" } */ color?: Logo; render(): import("lit").TemplateResult<1>; }