export type Added = { kind: "added"; }; export type Changed = { kind: "changed"; }; export type Deprecated = { kind: "deprecated"; }; export type Removed = { kind: "removed"; }; export type Fixed = { kind: "fixed"; }; export type Security = { kind: "security"; }; export type Unknown = { kind: "unknown"; name: string; }; export type Category = Added | Changed | Deprecated | Removed | Fixed | Security | Unknown; export declare function categoryFromText(text: string): Category; export declare const added: Category; export declare const changed: Category; export declare const deprecated: Category; export declare const removed: Category; export declare const fixed: Category; export declare const security: Category; export declare function categoryToText(category: Category): string;