/**
 * HTML export plugin
 *
 * @public exported from `@promptbook/components`
 */
export declare const htmlSaveFormatDefinition: {
    readonly formatName: "html";
    readonly label: "Html";
    readonly getContent: ({ messages }: {
        readonly title: string;
        readonly messages: readonly import("../../types/ChatMessage").ChatMessage[];
        readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[];
    }) => string;
    readonly mimeType: "text/html";
    readonly fileExtension: "html";
};
/**
 * TODO: !!! Add QR code with branding to the footer
 *  TODO: [😬] Take chat save to HTML from existing parallel implementation
 */
