import * as z from "zod/v3"; /** * Describes the request body of the /debug/{datasource}/document API call. */ export type DebugDocumentRequest = { /** * Object type of the document to get the status for. */ objectType: string; /** * Glean Document ID within the datasource to get the status for. */ docId: string; }; /** @internal */ export type DebugDocumentRequest$Outbound = { objectType: string; docId: string; }; /** @internal */ export declare const DebugDocumentRequest$outboundSchema: z.ZodType; export declare function debugDocumentRequestToJSON(debugDocumentRequest: DebugDocumentRequest): string; //# sourceMappingURL=debugdocumentrequest.d.ts.map