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