/** @format */
export declare const baseUrl = "/";
export declare const MTETVERSION = "2.1.0";
export declare const GRID_BREAKPOINTS: {
    lg: number;
    md: number;
    sm: number;
    xs: number;
};
export declare const GRID_COLS: {
    lg: number;
    md: number;
    sm: number;
    xs: number;
};
export declare const GRID_ROW_HEIGHT = 200;
export declare const GRID_MARGIN: number[];
export declare const GRID_CONTAINER_PADDING: number[];
export type ResizeHandle = "s" | "w" | "e" | "n" | "sw" | "nw" | "se" | "ne";
export declare const GRID_RESIZE_HANDLES: ResizeHandle[];
export declare const BREAKPOINT_INFO: {
    lg: {
        description: string;
        color: string;
        icon: string;
    };
    md: {
        description: string;
        color: string;
        icon: string;
    };
    sm: {
        description: string;
        color: string;
        icon: string;
    };
    xs: {
        description: string;
        color: string;
        icon: string;
    };
};
export type BreakpointColor = "primary" | "secondary" | "error" | "info" | "success" | "warning" | "default";
export declare const CONTROL_TYPES: {
    readonly ZOOM: "zoom";
    readonly FIT_VIEW: "fit-view";
    readonly CONTROLS: "controls";
    readonly MINIMAP: "minimap";
    readonly BACKGROUND: "background";
    readonly PANEL: "panel";
    readonly SELECTION: "selection";
    readonly KEYBOARD: "keyboard";
};
export declare const CONTROL_IDS: {
    readonly ZOOM_IN: "zoom-in";
    readonly ZOOM_OUT: "zoom-out";
    readonly FIT_VIEW: "fit-view";
    readonly SHOW_MINIMAP: "show-minimap";
    readonly SHOW_BACKGROUND: "show-background";
    readonly SHOW_CONTROLS: "show-controls";
    readonly CENTER_SELECTED: "center-selected";
};
export declare const CONTROL_PRIORITIES: {
    readonly HIGH: 1;
    readonly MEDIUM: 2;
    readonly LOW: 3;
};
