import { IconScale } from '.';
import type { IconWeight } from './Icon.types';
declare const CLASS_PREFIX = "md-icon";
declare const COLOR_INHERIT = "currentColor";
declare const WEIGHTS: Record<string, IconWeight>;
declare const SCALES: {
    25: number;
    50: number;
    75: number;
    100: number;
    125: number;
    150: number;
    175: number;
    200: number;
};
declare const SIZES: Record<IconScale, IconScale>;
declare const DEFAULTS: {
    WEIGHT: IconWeight;
    AUTO_SCALE: boolean;
    WEIGHTLESS: boolean;
};
declare const STYLE: {
    wrapper: string;
    notFound: string;
    coloured: string;
    noShrink: string;
    autoScales: string;
    scales: string;
};
export { CLASS_PREFIX, COLOR_INHERIT, DEFAULTS, SCALES, SIZES, STYLE, WEIGHTS };
