import { CSSResult, LitElement } from 'lit'; export declare class SkfElement extends LitElement { static define(name: string, elementConstructor?: CustomElementConstructor, options?: ElementDefinitionOptions): void; static dependencies: Record; constructor(); /** Custom event emitter helper function. Transmits user actions or component state change. Use composed=false for event that should not pierce shadowDom. */ emit(name: string, options?: CustomEventInit): Event; /** This let's a component set styles in the light DOM. Scope css selectors with custom tag name to just target the slot. */ protected _setSlotStyles(slottedStyles: CSSResult): void; }