export interface GithubProfile { login: string | null; id: number; node_id?: string | null; avatar_url: string | null; gravatar_id?: string | null; url?: string | null; html_url: string | null; followers_url?: string | null; following_url?: string | null; gists_url?: string | null; starred_url?: string | null; subscriptions_url?: string | null; organizations_url?: string | null; repos_url?: string | null; events_url?: string | null; received_events_url?: string | null; type?: string | null; site_admin?: boolean | null; name?: string | null; company?: string | null; blog?: string | null; location?: string | null; email?: string | null; hireable?: boolean | null; bio?: string | null; twitter_username?: string | null; public_repos?: number; public_gists?: number; followers?: number; following?: number; created_at?: string; updated_at?: string; } export declare const useGithubProfile: ({ username, useremail, githubAccessToken, size, }: { username: string; useremail?: string | undefined; githubAccessToken?: string | undefined; size?: number | undefined; }) => GithubProfile;