interface SelectorConfig { rating: string; star: string; starsContainer: string; reviewLink: string; ctaText: string; reviewCount: string; updatedAt: string; fallback: string; } interface StringTemplates { ratingAvailable: string; ratingPending: string; starsAvailable: string; starsPending: string; noReviewsText: string; noReviewsCtaText: string; } export interface GoogleReviewsClientOptions { id: string; selectors?: Partial; strings?: Partial; ctaTemplate?: string; disableVisibilityRefresh?: boolean; } export default function initGoogleReviews(options: GoogleReviewsClientOptions): void; export {}; //# sourceMappingURL=googleReviewsClient.d.ts.map