import type { ChatSaveFormatDefinition } from './ChatSaveFormatDefinition';
import type { string_chat_format_name } from './string_chat_format_name';
/**
 * Returns enabled chat save plugins filtered by formatNames (or all when omitted)
 *
 * @public exported from `@promptbook/components`
 */
export declare function getChatSaveFormatDefinitions(formatNames?: ReadonlyArray<string_chat_format_name>): ReadonlyArray<ChatSaveFormatDefinition>;
