import { APIResource } from "../../../core/resource.mjs"; export declare class Get extends APIResource { } export interface PdfResponse { /** * PDF presentation ID */ _id: string; /** * Creation timestamp */ createdAt: string; /** * Locale of the presentation */ locale: string; /** * Number of slides */ numberOfSlides: number; /** * Organization ID */ organizationId: string; /** * Topic of the presentation */ topic: string; /** * Transcript of each slide */ transcript: Array; /** * Update timestamp */ updatedAt: string; /** * URL to the generated PDF on S3 */ url: string; /** * URL to the generated PowerPoint (PPTX) on S3 */ pptxUrl?: string; /** * User ID */ userId?: string; } export declare namespace PdfResponse { interface Transcript { /** * Description of the slide content and OCR text */ descriptionOfPage: string; /** * Page number of the slide */ pageNum: number; } } export declare namespace Get { export { type PdfResponse as PdfResponse }; } //# sourceMappingURL=get.d.mts.map