import type { Color, Elevation, Round } from './ModalContainer.types';
declare const CLASS_PREFIX = "md-modal-container";
declare const COLORS: Record<string, Color>;
declare const ELEVATIONS: Record<number, Elevation>;
declare const ROUNDS: Record<number, Round>;
declare const DEFAULTS: {
    COLOR: Color;
    ELEVATION: Elevation;
    IS_PADDED: boolean;
    ROUND: Round;
    SHOW_ARROW: boolean;
    PLACEMENT: string;
    ROLE: string;
};
declare const STYLE: {
    wrapper: string;
    arrowWrapper: string;
};
declare const ARROW_ID = "arrow";
export { CLASS_PREFIX, COLORS, DEFAULTS, ELEVATIONS, ROUNDS, STYLE, ARROW_ID };
