export declare const STORE_ID_FIRESTORE = "firestore"; export declare const STORE_TYPE_FIRESTORE = "firestore"; export declare const STORE_TYPE_GITHUB = "github"; export declare const STORE_ID_GITHUB_COM = "github.com"; export declare const GITLAB_REPO_PREFIX = "gitlab."; export declare function storeCanProvideListOfProjects(storeId: string): boolean; export type StoreType = 'firestore' | 'agent' | 'browser' | 'github' | 'gitlab'; export interface IStoreRef { type: StoreType; id?: string; url?: string; } export declare function storeRefToId(ref: IStoreRef): string; export declare function parseStoreRef(storeId?: string): IStoreRef;