import type { Color, Height, Rounding } from './Card.types';
declare const CLASS_PREFIX = "md-card";
declare const COLORS: Record<string, Color>;
declare const HEIGHTS: Record<string, Height>;
declare const ROUNDINGS: Record<number, Rounding>;
declare const DEFAULTS: {
    COLOR: Color;
    HEIGHT: Height;
    ROUNDING: Rounding;
};
declare const STYLE: {
    wrapper: string;
};
export { CLASS_PREFIX, COLORS, DEFAULTS, HEIGHTS, ROUNDINGS, STYLE };
