import { LinkStatus } from "./types"; export declare const status: { LIVE: LinkStatus; SOON: LinkStatus; NEW: LinkStatus; }; export declare const links: ({ label: string; icon: string; href: string; items?: undefined; status?: undefined; calloutClass?: undefined; } | { label: string; icon: string; items: { label: string; href: string; }[]; href?: undefined; status?: undefined; calloutClass?: undefined; } | { label: string; icon: string; href: string; status: LinkStatus; items?: undefined; calloutClass?: undefined; } | { label: string; icon: string; status: LinkStatus; items: ({ icon: string; label: string; href: string; status: LinkStatus; } | { icon: string; label: string; href: string; status?: undefined; })[]; calloutClass: string; href?: undefined; })[]; export declare const socials: { label: string; icon: string; href: string; }[]; export declare const MENU_HEIGHT = 64; export declare const MENU_ENTRY_HEIGHT = 46; export declare const MENU_SUB_ENTRY_HEIGHT = 40; export declare const SIDEBAR_WIDTH_FULL = 270; export declare const SIDEBAR_WIDTH_REDUCED = 60;