export type NotificationForm = {
    id: string
    title: string
    description: string
    image?: string | File
    date: string | Date
    time: string
    userType: 'builder' | 'broker' | 'all';
    device: 'ios' | 'android' | 'web' | 'all';
    status: 'send' | 'schedule';
  }