/** Sidebar geometry constants — shared by both adapters so the * page-shift and card-gap math stays consistent. * @packageDocumentation * @public */ declare const SIDEBAR_WIDTH = 340; declare const SIDEBAR_PAGE_GAP = 12; declare const SIDEBAR_DOCUMENT_SHIFT: number; declare const MIN_CARD_GAP = 8; export { MIN_CARD_GAP, SIDEBAR_DOCUMENT_SHIFT, SIDEBAR_PAGE_GAP, SIDEBAR_WIDTH };