import { Collection, type Channel, type Message, type TextBasedChannel } from 'discord.js'; import { ExportReturnType, type CreateTranscriptOptions, type GenerateFromMessagesOptions, type ObjectType } from './types'; /** * * @param messages The messages to generate a transcript from * @param channel The channel the messages are from (used for header and guild name) * @param options The options to use when generating the transcript * @returns The generated transcript */ export declare function generateFromMessages(messages: Message[] | Collection, channel: Channel, options?: GenerateFromMessagesOptions): Promise>; /** * * @param channel The channel to create a transcript from * @param options The options to use when creating the transcript * @returns The generated transcript */ export declare function createTranscript(channel: TextBasedChannel, options?: CreateTranscriptOptions): Promise>; declare const _default: { createTranscript: typeof createTranscript; generateFromMessages: typeof generateFromMessages; }; export default _default; export * from './types';