import type { PageResult } from "../../../common/types";
export type CreativeReview = {
    /**
     * This attribute is read-only.
     */
    id: string;
    /**
     * This attribute is read-only.
     */
    reviewableUrl: string;
    /**
     * This attribute is read-only.
     */
    impressions: number;
};
export type CreativeReviewPage = PageResult<CreativeReview>;
//# sourceMappingURL=creativeReview.type.d.ts.map