import { MedusaRequest, MedusaResponse } from '@medusajs/framework'; /** * @oas [get] /admin/reviews * operationId: "AdminListReviews" * summary: "List reviews" * description: "Retrieves review list" * x-authenticated: true * parameters: * - in: query * name: limit * schema: * type: number * description: The number of items to return. Default 50. * - in: query * name: offset * schema: * type: number * description: The number of items to skip before starting the response. Default 0. * - name: fields * in: query * schema: * type: string * required: false * description: Comma-separated fields to include in the response. * - name: reference * in: query * schema: * type: string * enum: [product,seller] * required: false * description: Filter by review reference * responses: * "200": * description: OK * content: * application/json: * schema: * type: object * properties: * reviews: * type: array * items: * $ref: "#/components/schemas/Review" * count: * type: integer * description: The total number of reviews * offset: * type: integer * description: The number of reviews skipped * limit: * type: integer * description: The number of reviews per page * tags: * - Admin Reviews * security: * - api_token: [] * - cookie_auth: [] */ export declare function GET(req: MedusaRequest, res: MedusaResponse): Promise;