/** * Create a pre-configured useFetch instance with a base URL and default options. * * @example * ```ts * const useMyFetch = createFetch({ baseUrl: '/api' }) * const { data, error } = await useMyFetch('/users').get().json() * ``` */ export declare function createFetch(config?: CreateFetchOptions): void; export declare interface CreateFetchOptions { baseUrl?: string options?: RequestInit }