/** * Fetch function for SWR with redirect behavior * @param url - The endpoint to fetch data from * @param options - Redirect paths and optional fetch options */ export declare const swrFetcher: (url: string, options?: { loginRedirectPath?: string; errorRedirectPath?: string; init?: RequestInit; }) => Promise;