import { Testimonial } from "../types"; export declare function useFetch(url: string | null, options?: RequestInit): { data: T | null; loading: boolean; error: { message: string; } | null; };