import customCssProps from '../internal/generated/custom-css-properties'; import { AlertProps } from './interfaces'; export declare function getAlertStyles(style: AlertProps['style']): { background: string | undefined; borderColor: string | undefined; borderRadius: string | undefined; borderWidth: string | undefined; color: string | undefined; } | undefined; export declare function getIconStyles(style: AlertProps['style']): { [customCssProps.alertIconColor]: string; } | undefined; export declare function getDismissButtonStyles(style: AlertProps['style']): { root: { color: { active: string | undefined; default: string | undefined; hover: string | undefined; }; focusRing: { borderColor: string | undefined; borderRadius: string | undefined; borderWidth: string | undefined; }; }; } | undefined;