import { BadgePropForm, BadgePropSize, BadgePropStatus, BadgePropView } from './types'; export declare const getHorizontalPadding: (size: BadgePropSize, form: BadgePropForm, minified: boolean) => string | undefined; export declare const getSize: (size: BadgePropSize, minified: boolean) => string; export declare const getTextSize: (size: BadgePropSize) => string; export declare const getMinifiedBorderSize: (size: BadgePropSize, minified: boolean) => string | undefined; export declare const getBgColor: (status: BadgePropStatus) => string; export declare const getTextColor: (status: BadgePropStatus, view: BadgePropView) => string; export declare const getBorderColor: (status: BadgePropStatus, view: BadgePropView) => string | undefined; export declare const getDegreeMixing: (status: BadgePropStatus, view: BadgePropView) => "30%" | "100%" | "10%" | undefined;