import { Color } from './Overlay.types';
declare const CLASS_PREFIX = "md-overlay";
declare const COLORS: Record<string, Color>;
declare const DEFAULTS: {
    COLOR: Color;
    FULLSCREEN: boolean;
};
declare const STYLE: {
    wrapper: string;
};
export { CLASS_PREFIX, COLORS, DEFAULTS, STYLE };
