export { Verdana110 as calcWidth } from './calc-text-width';
import colorPresets from './color-presets';
export declare type StyleOption = 'flat' | 'classic';
export declare 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;
declare global {
    interface Window {
        badgen: typeof badgen;
    }
}
