import { CommonEntity } from '@servicelabsco/nestjs-utility-services'; import { FcmTemplateAttributesDto } from '../../access/dtos/fcm.template.attributes.dto'; export declare class FcmTemplateEntity extends CommonEntity { name: string; identifier: string; content: any; variables: any; active: boolean; attributes: FcmTemplateAttributesDto; }