export declare const networkError: { status: number; body: { error: string; message: string; }; }; export declare const notFoundError: { status: number; body: { error: string; message: string; }; }; export declare const unauthorizedError: { status: number; body: { error: string; message: string; }; }; export declare const validationError: { status: number; body: { error: string; message: string; details: { customer_id: string[]; }; }; };