/** * Default surface sizing for product dropdown menus (view settings, row ⋯, column menus, etc.). * * Uses **pure CSS** (`w-max` + `min-w-*` + `max-w-*`) so width follows labels and shortcuts * without **ResizeObserver** or layout thrash. * * Override when you need a fixed rail, for example: * - `className="w-20"` — page-size picker in `DataTablePaginated` * - `className="w-(--radix-dropdown-menu-trigger-width) min-w-60"` — account / identity menus * - `className="!w-max min-w-72 …"` — very wide school/program switcher */ declare const DROPDOWN_MENU_CONTENT_SURFACE_CLASS: "min-w-52 w-max max-w-[min(24rem,calc(100vw-2rem))]"; export { DROPDOWN_MENU_CONTENT_SURFACE_CLASS };