import { Customer } from './customer.entity';
import { User } from '@/modules/user/entities/user.entity';
export declare class CustomerUser {
    id: number;
    customerId: number;
    userId: number;
    customer: Customer;
    user: User;
}
