import { LitElement, nothing } from 'lit'; import { ThemeContext } from '../types'; declare const NAME = "canary-logo-github"; export declare class CanaryLogoGithub extends LitElement { theme?: ThemeContext; render(): import('lit-html').TemplateResult<1> | typeof nothing; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { [NAME]: CanaryLogoGithub; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};