import { LitElement } from 'lit'; import type { Color, Size } from '@nvidia-elements/core/internal'; /** * @element nve-logo * @description A visual indicator for a brand or application. * @documentation https://nvidia.github.io/elements/docs/elements/logo/ * @since 0.10.0 * @entrypoint \@nvidia-elements/core/logo * @slot - Text, an image, or other visual content representing the brand or application. * @cssprop --background * @cssprop --gap * @cssprop --color * @cssprop --height * @cssprop --width * @cssprop --font-size * @cssprop --border-radius * @cssprop --font-weight * @aria https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img */ export declare class Logo extends LitElement { /** * Visual treatment to represent unique color of an application */ color: Color; /** * Determines size of logo */ size?: Size; static styles: import("lit").CSSResult[]; static readonly metadata: { tag: string; version: string; }; _internals: ElementInternals; render(): import("lit").TemplateResult<1>; connectedCallback(): void; }