import { Theme } from 'styled-components'; export type AlertPaletteItem = { background: string; text: string; border: string; icon: string; }; export type AlertPalette = { [key: string]: AlertPaletteItem; }; export declare const getAlertPalette: (theme: Theme) => AlertPalette;