import { Customer } from "./customer.entity";
export declare class CustomerPhoneNumbers {
    id: number;
    customer_id: number;
    country_code: string;
    phone_number: string;
    type: string;
    is_primary: boolean;
    customer: Customer;
    created_at: Date;
    updated_at: Date;
    deleted_at: Date;
}
