import { ReplyLocation } from "../ReplyLocation";
export declare class SendBody {
readonly message: string;
readonly code: number;
readonly location: ReplyLocation;
constructor(message: SendBodyRaw);
}
export interface SendBodyRaw {
1: string;
3: number;
4: string;
}