import * as React from 'react'; export type AlertDialogTheme = 'info' | 'warning' | 'danger' | 'success'; export declare const AlertDialogIcon: ({ theme }: { theme: AlertDialogTheme; }) => React.JSX.Element;