import { AppEntity } from '../types/index.js'; import { AbstractFetchStrategy, EndpointParams } from './AbstractFetchStrategy.js'; /** * The App Settings strategy is used to fetch the app settings endpoints exposed by the * headless wp plugin * * @category Data Fetching */ export declare class AppSettingsStrategy extends AbstractFetchStrategy { getDefaultEndpoint(): string; getParamsFromURL(path: string, params?: Partial

): Partial

; }