/**
 * BadRequest
 *
 * 400 Bad Request
 */
export type BadRequest = {
    errors: {
        /**
         * Fuller message giving context to error
         */
        detail?: string;
        /**
         * Key indicating type of error
         */
        type: "INVALID_BEARER_TOKEN" | "INVALID_USER_AGENT" | "NOT_ENOUGH_UNPAID_PAYOUTS" | "DUPLICATE_HEADERS";
    };
};
//# sourceMappingURL=bad-request.d.ts.map