import type * as HydraDB from "../../../../../api/index.js"; import * as core from "../../../../../core/index.js"; import type * as serializers from "../../../../index.js"; import { FeedbackGroundTruth } from "../../../../types/FeedbackGroundTruth.js"; import { FeedbackRating } from "../../../../types/FeedbackRating.js"; import { FeedbackSource } from "../../../../types/FeedbackSource.js"; export declare const FeedbackSubmitRequest: core.serialization.Schema; export declare namespace FeedbackSubmitRequest { interface Raw { collection?: string | null; database?: string | null; feedback?: string | null; ground_truth?: FeedbackGroundTruth.Raw | null; metadata?: Record | null; rating?: FeedbackRating.Raw | null; request_id: string; source?: FeedbackSource.Raw | null; sub_tenant_id?: string | null; tenant_id?: string | null; } }