import { AuthorArchiveFetchStrategy, FetchResponse, PostEntity, PostsArchiveParams } from '../../data/index.js'; import { FetchHookOptions } from './types.js'; /** * The useFetchAuthorArchive hook * * See {@link useAuthorArchive} * * @param params The list of params to pass to the fetch strategy. It overrides the ones in the URL. * @param options The options to pass to the swr hook. * @param path The path of the url to get url params from. * * @returns */ export declare function useFetchAuthorArchive(params?: PostEntity | {}, options?: FetchHookOptions>, path?: string): import("./useFetchPosts.js").usePostsResponse; /** * @internal */ export declare namespace useFetchAuthorArchive { const fetcher: (sourceUrl?: string, defaultParams?: P) => AuthorArchiveFetchStrategy; }