UNPKG

phx-react

Version:

PHX REACT

14 lines (13 loc) 404 B
import React from 'react'; export declare enum ENotificationType { IN_APP = "in_app", EMAIL = "email" } export interface IMobilePreviewProps { title?: string; description?: string; type?: 'in_app' | 'email'; content?: string; isEvent?: boolean; } export declare const MobilePreview: ({ content, description, isEvent, title, type, }: IMobilePreviewProps) => React.JSX.Element;