import { LitElement, type CSSResult } from "lit"; export default class SgdsElement extends LitElement { static styles: CSSResult[]; /**@internal Set to true in SSR environment */ ssr: boolean; /** Emits a custom event with more convenient defaults. */ emit(name: string, options?: CustomEventInit): CustomEvent<{}>; static define(name: string, elementConstructor?: typeof SgdsElement, options?: ElementDefinitionOptions): void; /** @internal */ static dependencies: Record; constructor(); protected firstUpdated(changedProperties: Parameters[0]): void; }