import { UnprocessableEntityError } from './unprocessable-entity-error.interface'; export interface WorkOSResponseError { code?: string; error_description?: string; error?: string; errors?: UnprocessableEntityError[]; message: string; }