import type { LiveComponent, LiveElement } from '@use-gpu/live'; export type FetchAPIOptions = Parameters[1]; export type FetchProps = { url?: string; request?: Request; options?: FetchAPIOptions; version?: number; type?: keyof Response; loading?: T; fallback?: T; slow?: number; then?: (t: any) => T | Promise; render?: (t: T) => LiveElement; children?: (t: T) => LiveElement; }; export declare const Fetch: LiveComponent>;