import { ResponsiveSized } from '../../context/windowSizeProvider'; /** Full-view page: main column width by `WindowSize` tier. */ export declare const AI_CFO_SECTION_WIDTH_FULL_VIEW: ResponsiveSized; /** Drawer / non–full-view page width by `WindowSize` tier. */ export declare const AI_CFO_DRAWER_WIDTH: ResponsiveSized; /** Desktop full-view Explore: main column / sample-question row width */ export declare const EXPLORE_DESKTOP_CONTENT_WIDTH_PX = 860; /** Stacking: scroll/content vs. sticky chat header vs. sticky input */ export declare const AiCfoZIndex: { readonly scrollContent: 1; /** * Sticky chat header pinned to the top of the scroll container. Must sit * above the scrolling questions/answers but below the page `NavBar` * (which uses z-index 3 in `AiCfoPage`). */ readonly chatHeader: 2; readonly bottomSection: 3; }; /** * CHAT HISTORY sticky label above session list (above MenuContainer z-index 1 / 10). */ export declare const CHAT_HISTORY_GROUP_HEADER_Z_INDEX = 12; /** Gap between “Chat History” label and the session rows below it (not on Space scale). */ export declare const CHAT_HISTORY_HEADER_TO_SESSIONS_GAP = "2px"; /** Mobile nav title truncation */ export declare const NAV_TITLE_MAX_WIDTH = "208px"; /** Menu popover items wrapper vertical margin (not on Space scale) */ export declare const MENU_ITEMS_CONTAINER_MARGIN_Y = "5px"; /** Textarea min height (design spec; closest Space step is 72 / 80) */ export declare const AI_CFO_INPUT_MIN_TEXTAREA_HEIGHT_PX = 70; /** Textarea max height */ export declare const AI_CFO_INPUT_MAX_TEXTAREA_HEIGHT_PX = 200; export declare const SAMPLE_QUESTION_CHIPS_LOADING_PLACEHOLDER_COUNT = 3; /** How many sample-question chips show before "Show more" (shared: Explore, side panel, dashboard card). */ export declare const SAMPLE_QUESTION_CHIPS_INITIAL_VISIBLE_COUNT = 3;