import HestiaHelper from './hestia-helper'; import { HestiaTestimonialData } from '../../models/testimonial.types'; import { ModelError } from '../../models/model'; export default class HestiaTestimonialHelper extends HestiaHelper { basePath: string; findAll({ page, pageSize, branchId, }: { page?: number; pageSize?: number; branchId?: number; }): Promise<{ results: HestiaTestimonialData[]; totalCount: number; errors: ModelError[] | null; }>; } //# sourceMappingURL=hestia-testimonial-helper.d.ts.map