export default class Reply {
    type: string;
    value: string;
    static ERROR: string;
    static OK: string;
    constructor(type: string, value: string);
    isError(): boolean;
    toError(): Error;
}
//# sourceMappingURL=reply.d.ts.map