import type { MailboxPath, UIDValidity } from '../../types/common'; import type { CommandContext } from './types'; export type AppendOptions = { readonly flags?: string | readonly string[]; readonly internalDate?: Date; }; export type AppendResult = { readonly destination: MailboxPath; readonly path?: MailboxPath; readonly seq?: number; readonly uid?: number; readonly uidValidity?: UIDValidity; }; export declare const append: (ctx: CommandContext, destination: string, content: string | Buffer, options?: AppendOptions) => Promise; //# sourceMappingURL=append.d.ts.map