import { BaseResponse } from "./BaseResponse";
export interface ErrorResponse extends BaseResponse {
    error: {
        code: string;
        message: string;
    };
}
export declare class ErrorCode {
    static TooManyRequests: string;
    static ContentFilter: string;
}
