export declare const Protocols: { readonly git: "git"; }; export type Protocol = (typeof Protocols)[keyof typeof Protocols]; export declare namespace Protocol { const Git: (s: string) => s is "git"; const Is: (s: string) => s is Protocol; }