import { Session, Universal, h } from 'koishi';
type MsgUser = Omit<Universal.User & Universal.GuildMember, 'id'>;
export declare class BulkMessageBuilder {
    #private;
    session: Session;
    constructor(session: Session);
    all(): h;
    get figure(): h;
    addLine(author: MsgUser, message: string): this;
    botSay(msg: string): this;
    authorSay(msg: string): this;
    prependOriginal(): this;
}
export {};
