import HestiaHelper from './hestia-helper'; export type HestiaArticleResponse = { result: { article: { title: string; }; }; }; export default class HestiaArticleHelper extends HestiaHelper { basePath: string; find({ slug }: { slug: string; }, settings?: {}): Promise; findAll(): Promise; } //# sourceMappingURL=hestia-article-helper.d.ts.map