import { PostEntity } from '../types/index.js'; import { PostsArchiveFetchStrategy, PostsArchiveParams } from './PostsArchiveFetchStrategy.js'; /** * The AuthorArchiveFetchStrategy extends the {@link PostsArchiveFetchStrategy} and performs author archive requests * * This strategy supports extracting endpoint params from url E.g: * - `/author-name/` maps to `{ author: 'author-name' }` * - `/author-name/page/2` maps to `{ author: 'author-name', page: 2 }` * * @category Data Fetching */ export declare class AuthorArchiveFetchStrategy extends PostsArchiveFetchStrategy { getParamsFromURL(path: string, nonUrlParams?: Partial

): Partial

; }