UNPKG

@janiscommerce/ui-native

Version:
22 lines (21 loc) 534 B
import { FC, ReactElement } from 'react'; export declare enum animationTypes { Slide = "slide", Fade = "fade", None = "none" } interface Props { backgroundColor?: string; isVisible?: boolean; title?: string; subtitle?: string; iconName?: string; textsColor?: string; iconColor?: string; animationType?: animationTypes; duration?: number; onEndDuration?: () => void; children?: ReactElement | null; } declare const FullScreenMessage: FC<Props>; export default FullScreenMessage;