export interface IGithubAPIResponse {
    id: number;
    name: string;
    topics: string[];
    html_url: string;
    description: string;
    homepage: string;
}
export declare const fetchGitHubAPI: (gitHubUsername: string) => Promise<IGithubAPIResponse[]>;
