import { Review, Author, Publisher, ReviewRating } from '../types';
export declare const buildReviewRating: (rating: ReviewRating) => string;
export declare const buildAuthor: (author: Author) => string;
export declare const buildPublisher: (publisher: Publisher) => string;
export declare const buildReviews: (reviews: Review[]) => string;
