export type APIResponse<T> = T;
export interface APIError {
    code: string;
    message: string;
    errors?: unknown[];
}
//# sourceMappingURL=types.d.ts.map