export type DBAPITestimonialData = { id: number; agency_id: number; name: string; content: string; channel: string; branch_id: number | null; written_on: string | null; metadata: { from: string; year_updated: string; contact_title: string; year_received: string; contact_county: string; month_received: string; contact_forenames: string; contact_last_name: string; external_property_ref: string; }; external_id: number | null; updated_at: string | null; created_at: string; associations: []; filtered_associations: []; }; export type HestiaTestimonialData = { testimonial_id: number; name: string; content: string; branch_id: number | null; channel: string; agency_id: number; created_at: string; written_on: string; }; export type HestiaTestimonialsResult = { testimonials: { total: number; elements: HestiaTestimonialData[]; }; }; //# sourceMappingURL=testimonial.types.d.ts.map