import 'server-only'; import Pagination from './helpers/pagination'; import Model, { ModelError } from './model'; import { DBAPITestimonialData, HestiaTestimonialData } from './testimonial.types'; export * from './testimonial.types'; export default class Testimonial extends Model { static findById(id: string | number): Promise<{ result: null; errors: ModelError[] | null; } | { result: Testimonial; errors: null; }>; static findAll(params?: { branchId?: number; pageSize?: number; channel?: string; }): Promise<{ results: Testimonial[]; pagination: Pagination | null; errors: ModelError[] | null; }>; get id(): number | null; get name(): string | null; get content(): string | null; get contactCounty(): string | null; get contactLastName(): string | null; get contactTitle(): string | null; get createdAt(): string | null; get displayDate(): string | null; get writtenOn(): Date | null; } //# sourceMappingURL=testimonial.d.ts.map