import type { ScheduleInfoColor } from './MeetingContainer.types';
declare const CLASS_PREFIX = "md-meeting-container";
declare const SCHEDULE_INFO_COLORS: Record<string, ScheduleInfoColor>;
declare const ANCHORS: {
    TOP: string;
    CENTER: string;
};
declare const DEFAULTS: {
    ANCHOR: string;
    IS_DISABLED: boolean;
    SCHEDULE_INFO_COLOR: ScheduleInfoColor;
    TITLE_TYPE: import("../Text/Text.types").FontStyle;
    TITLE_TAG_NAME: "h3";
};
declare const STYLE: {
    wrapper: string;
    actions: string;
    tags: string;
    details: string;
    avatar: string;
    container: string;
    spaceLink: string;
};
export { CLASS_PREFIX, DEFAULTS, STYLE, SCHEDULE_INFO_COLORS, ANCHORS };
