export { Verdana110 as calcWidth } from './calc-text-width'; import colorPresets from './color-presets'; export type StyleOption = 'flat' | 'classic'; export type ColorPreset = keyof typeof colorPresets; export interface BadgenOptions { status: string; subject?: string; color?: ColorPreset; label?: string; labelColor?: string; style?: StyleOption; icon?: string; iconWidth?: number; scale?: number; } export declare function badgen({ label, subject, status, color, style, icon, iconWidth, labelColor, scale }: BadgenOptions): string; export default badgen; declare global { interface Window { badgen: typeof badgen; } }