import React, { ReactNode } from 'react';
interface ApplicationAlertProps {
    variant?: 'default' | 'primary';
    icon?: any;
    as?: keyof React.JSX.IntrinsicElements | React.ComponentType<any>;
    children: ReactNode;
    [key: string]: any;
}
declare const ApplicationAlert: React.FC<ApplicationAlertProps>;
export default ApplicationAlert;
export type { ApplicationAlertProps };
//# sourceMappingURL=ApplicationAlert.d.ts.map