import { InputLinkRepository } from '~server/data/interfaces'; export declare const getProvider: (providerID: string, ownedBy: string) => Promise; export declare const getRepositoriesData: (providerID: string, ownedBy: string) => Promise; export declare const getRepositoryDataByNameWithOwner: (providerID: string, nameWithOwner: string, ownedBy: string) => Promise; export declare const getRepository: (providerID: string, name: string, ownedBy: string) => Promise; export declare const getOwner: (providerID: string, ownedBy: string) => Promise<{ identonym: any; } | undefined>; export declare const handleLinkRepository: (input: InputLinkRepository, ownedBy: string) => Promise;