import { CreativeWork } from "./CreativeWork";
/**
 * https://schema.org/Review
 */
export interface Review extends CreativeWork {
    url: string;
}
