import { Marker, MarkersKind } from "./markers"; export interface Style { readonly kind: string; } export interface NamedStyles extends Marker { readonly kind: K; readonly name: string; readonly displayName: string; readonly description?: string; readonly tags: string[]; readonly styles: Style[]; } //# sourceMappingURL=style.d.ts.map