import React from 'react';
import { PersonalTheme } from './types/alertTypes';
type Props = {
    animationType?: 'none' | 'fade' | 'slide';
    appearance?: 'light' | 'dark';
    personalTheme?: PersonalTheme;
    theme?: 'ios' | 'android';
};
export declare function AlertContainer({ theme, appearance, personalTheme, animationType, }: Props): React.JSX.Element | undefined;
export {};
