export declare type TestimonialType = { ID: string; author: string; title: string; createdAt: number; content: string; rating: number; imageURLs: string[]; }; export declare type TestimonialInputType = { author: string; email: string; title: string; company: string; content: string; imageURLs: string[]; rating: number; published: boolean; isFeatured: boolean; };