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