import type { SpecialHandler } from "./types"; /** * Fetch from GitHub API */ export declare function fetchGitHubApi(endpoint: string, timeout: number, signal?: AbortSignal): Promise<{ data: unknown; ok: boolean; }>; /** * Handle GitHub URLs specially */ export declare const handleGitHub: SpecialHandler;