import { Elements, type Message, type MessageMapping } from 'kotori-bot';
import type { MessageCqType } from './types';
export declare class OnebotElements extends Elements {
    getSupportsElements(): (keyof MessageMapping)[];
    decode(message: Message): string;
    encode(raw: string): Message;
    cq(type: MessageCqType, data: string): string;
}
export default OnebotElements;
