import { NotificationType } from './notification.entity';
export declare class NotificationTemplate {
    id: string;
    type: NotificationType;
    name: string;
    description: string;
    in_app_enabled: boolean;
    in_app_title: string;
    in_app_message: string;
    email_enabled: boolean;
    email_subject: string;
    email_body: string;
    available_variables: string[];
    is_active: boolean;
    created_at: Date;
    updated_at: Date;
}
