import type { LitElement } from "lit"; import type { RecordingState } from "../../types.js"; import type { Constructor } from "./types.js"; /** * Lit context and mixin for recording UI state (`stopped`, `recording`, …). */ export declare const recordingStateContext: { __context__: RecordingState; }; export declare class RecordingStateContextInterface { recordingState: RecordingState; } export declare function RecordingStateContextMixin>(superclass: T): Constructor & T;