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;
