/**
 * Type describing export format.
 *
 * @private utility of `<Chat/>` component
 */
export type ExportFormat = 'pdf' | 'txt' | 'md' | 'html' | 'json';
