import type { ChatMessage } from '../../types/ChatMessage';
import type { ChatParticipant } from '../../types/ChatParticipant';
/**
 * HTML export plugin
 *
 * @public exported from `@promptbook/components`
 */
export declare const htmlSaveFormatDefinition: {
    readonly formatName: "html";
    readonly label: "HTML";
    readonly getContent: ({ title, messages, participants }: {
        readonly title: string;
        readonly messages: readonly ChatMessage[];
        readonly participants: readonly ChatParticipant[];
    }) => string;
    readonly mimeType: "text/html";
    readonly fileExtension: "html";
};
