interface AlertSpace { compactPadding: string; defaultPadding: string; iconCompactMarginRight: string; iconCompactMarginTop: string; iconDefaultMarginRight: string; iconDefaultMarginTop: string; titleMarginBottom: string; } interface AlertFontSizes { content: string; title: string; } interface AlertLineHeights { content: string; iconCompact: string; iconDefault: string; title: string; } interface AlertFontWeights { text: number; title: number; } interface AlertBorderWidths { wrapper: string; } interface AlertRadii { wrapper: string; } interface AlertColors { bgDanger: string; bgError: string; bgInfo: string; bgSuccess: string; bgWarning: string; borderDanger: string; borderError: string; borderInfo: string; borderSuccess: string; borderWarning: string; text: string; } declare const alertSpace: AlertSpace; declare const alertFontSizes: AlertFontSizes; declare const alertLineHeights: AlertLineHeights; declare const alertFontWeights: AlertFontWeights; declare const alertBorderWidths: AlertBorderWidths; declare const alertRadii: AlertRadii; declare const alertColors: AlertColors; export { alertSpace, alertFontSizes, alertLineHeights, alertFontWeights, alertBorderWidths, alertRadii, alertColors, };