/** * Shared layout tokens for list-hub split surfaces (Miller columns, tree + details). * Keeps Library panel / tree and generic `FinderPanelView` visually aligned. */ /** `ResizableHandle` between miller / tree columns — matches Library panel. */ declare const LIST_PAGE_SPLIT_RESIZABLE_HANDLE_CLASS = "w-1 bg-border/40 hover:bg-brand/20 transition-colors"; /** Primary column stack (scope list, folder list, record list, …). */ declare const LIST_PAGE_SPLIT_MILLER_COLUMN_PANEL_CLASS = "flex min-h-0 min-w-0 flex-col bg-card"; /** Right-hand inspector / detail column shell. */ declare const LIST_PAGE_SPLIT_MILLER_DETAIL_PANEL_CLASS = "flex min-h-0 min-w-0 flex-col bg-card"; export { LIST_PAGE_SPLIT_MILLER_COLUMN_PANEL_CLASS, LIST_PAGE_SPLIT_MILLER_DETAIL_PANEL_CLASS, LIST_PAGE_SPLIT_RESIZABLE_HANDLE_CLASS };