/**
 * PDF export plugin
 *
 * @public exported from `@promptbook/components`
 */
export declare const pdfSaveFormatDefinition: {
    readonly formatName: "pdf";
    readonly label: "Pdf";
    readonly getContent: ({ messages, participants }: {
        readonly title: string;
        readonly messages: readonly import("../../types/ChatMessage").ChatMessage[];
        readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[];
    }) => Uint8Array;
    readonly mimeType: "application/pdf";
    readonly fileExtension: "pdf";
};
/**
 * TODO: !!! Add QR code with branding to the footer
 * TODO: !!! Add print option
 */
