import * as z from "zod/v3"; import * as components from "../components/index.js"; export type FeedbackRequest = { /** * A URL encoded versions of Feedback. This is useful for requests. */ feedbackQueryParameter?: string | undefined; feedback1?: components.Feedback | undefined; }; /** @internal */ export type FeedbackRequest$Outbound = { feedbackQueryParameter?: string | undefined; Feedback1?: components.Feedback$Outbound | undefined; }; /** @internal */ export declare const FeedbackRequest$outboundSchema: z.ZodType; export declare function feedbackRequestToJSON(feedbackRequest: FeedbackRequest): string; //# sourceMappingURL=feedback.d.ts.map