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;
