export type StyleOption = 'flat' | 'classic'; export interface BadgenOptions { status: string; subject?: string; color?: string; label?: string; style?: StyleOption; jsonPath?: string; labelColor?: string; icon?: string; iconWidth?: number; scale?: number; arbitrary?: boolean; } export interface BadgeOption extends BadgenOptions { } export declare function badge(option: BadgeOption, summary: object): string;