import { Customer } from "src/modules/customers/entities/customer.entity";
export declare class CustomerNotification {
    id: number;
    customer_id: number;
    customer: Customer;
    title: string;
    message: string;
    data: any;
    is_read: boolean;
    created_at: Date;
}
