interface State { data?: T; error?: Error; } export declare function useFetch(url?: string, options?: RequestInit): State; export {};