import { Rate } from "../../db/types"; interface Get { id: number; } export declare function get({ id }: Get): Promise; interface GetAllForPublisher { publisherId: number; isArchived: boolean; } export declare function getAllForPublisher({ publisherId, isArchived, }: GetAllForPublisher): Promise; export {};