export declare const firstHeaderRow: string; export declare const lastHeaderRow: string; export declare const parentHeader: string; export declare const childHeader: string; export declare const hovered: string; export declare const narrow: string; export declare const sortableHeader: string; export declare const isSortedHeader: string; export declare const isMultiSortedHeader: string; export declare const subRowIndicatorColumn: string; export declare const customHeaderDensity: Record<"default" | "condensed" | "comfortable", string>; export declare const firstColumn: string; export declare const lastLeftPinnedColumn: string; export declare const firstUnpinnedColumn: string; export declare const firstRightPinnedColumn: string; export declare const leftPositionVar: `var(--${string})`; export declare const rightPositionVar: `var(--${string})`; export declare const headerWidthVar: `var(--${string})`; export declare const leftAdditionalElevationVar: `var(--${string})`; export declare const columnSizingHandle: import("@vanilla-extract/recipes").RuntimeFn<{ active: { true: { '::after': { cursor: "col-resize"; backgroundColor: string; width: number; }; }; false: {}; }; last: { true: { width: string; transform: "translateX(0)"; '::after': { left: "auto"; right: number; }; }; false: {}; }; pinnedColumn: { false: {}; left: {}; right: { left: "0"; transform: "translateX(-50%)"; selectors: { [x: string]: { left: "0"; width: string; transform: "none"; } | { left: "25%"; width?: undefined; transform?: undefined; }; }; }; }; }>; export declare const headerCell: import("@vanilla-extract/recipes").RuntimeFn<{ pinnedColumn: { false: {}; left: { position: "sticky"; zIndex: `calc(2 + var(--${string}))`; left: `var(--resizing-leftPosition, var(--${string}))`; selectors: { [x: string]: { content: "\"\""; display: "block"; position: "absolute"; width: string; right: number; top: number; bottom: number; backgroundColor: string; maxWidth: "100%"; }; }; }; right: { position: "sticky"; zIndex: 3; right: `var(--resizing-rightPosition, var(--${string}))`; selectors: { [x: string]: { content: "\"\""; display: "block"; position: "absolute"; width: string; left: number; top: number; bottom: number; backgroundColor: string; maxWidth: "100%"; }; }; }; }; rowDensity: { customHeaderRenderer: { paddingTop: string; paddingRight: string; paddingBottom: string; paddingLeft: string; selectors: { [x: string]: { paddingRight: number; paddingLeft?: undefined; } | { paddingLeft: number; paddingRight?: undefined; }; }; }; default: { paddingTop: string; paddingRight: string; paddingBottom: string; paddingLeft: string; selectors: { [x: string]: { paddingLeft: string; paddingRight?: undefined; } | { paddingRight: number; paddingLeft?: undefined; } | { paddingLeft: number; paddingRight?: undefined; }; }; }; condensed: { paddingTop: string; paddingRight: string; paddingBottom: string; paddingLeft: string; selectors: { [x: string]: { paddingLeft: `calc(${string} + ${string})`; paddingRight?: undefined; } | { paddingRight: number; paddingLeft?: undefined; } | { paddingLeft: number; paddingRight?: undefined; }; }; }; comfortable: { paddingTop: string; paddingRight: string; paddingBottom: string; paddingLeft: string; selectors: { [x: string]: { paddingLeft: string; paddingRight?: undefined; } | { paddingRight: number; paddingLeft?: undefined; } | { paddingLeft: number; paddingRight?: undefined; }; }; }; }; verticalDividers: { true: { selectors: { [x: string]: { content: "\"\""; display: "block"; position: "absolute"; width: string; left: number; top: string; bottom: string; backgroundColor: string; borderBottomWidth?: undefined; borderBottomStyle?: undefined; borderColor?: undefined; } | { bottom: number; content?: undefined; display?: undefined; position?: undefined; width?: undefined; left?: undefined; top?: undefined; backgroundColor?: undefined; borderBottomWidth?: undefined; borderBottomStyle?: undefined; borderColor?: undefined; } | { top: number; content?: undefined; display?: undefined; position?: undefined; width?: undefined; left?: undefined; bottom?: undefined; backgroundColor?: undefined; borderBottomWidth?: undefined; borderBottomStyle?: undefined; borderColor?: undefined; } | { borderBottomWidth: string; borderBottomStyle: any; borderColor: string; content?: undefined; display?: undefined; position?: undefined; width?: undefined; left?: undefined; top?: undefined; bottom?: undefined; backgroundColor?: undefined; } | { display: "none"; content?: undefined; position?: undefined; width?: undefined; left?: undefined; top?: undefined; bottom?: undefined; backgroundColor?: undefined; borderBottomWidth?: undefined; borderBottomStyle?: undefined; borderColor?: undefined; }; }; }; false: {}; }; isDragAndDropDisabled: { true: {}; false: { selectors: { [x: string]: { backgroundColor: string; cursor?: undefined; } | { cursor: "pointer"; backgroundColor: string; }; }; }; }; }>; export declare const headerCellEllipsis: string; export declare const headerCellActiveInteraction: string;