export declare const dataTableV2VirtualizationContainerCSS: import("@vanilla-extract/recipes").RuntimeFn<{ hasVisibleColumns: { true: { display: "grid"; gridTemplateRows: "auto 1fr"; gridTemplateAreas: "'header' 'body'"; }; false: { display: "flex"; flexDirection: "column"; justifyContent: "center"; }; }; loading: { true: { overflow: "hidden"; }; }; contained: { true: { backgroundColor: string; borderColor: string; borderStyle: string; borderWidth: string; borderRadius: string; selectors: { '&::-webkit-scrollbar-track': { backgroundColor: string; borderBottomRightRadius: string; }; '&::-webkit-scrollbar-track:horizontal': { borderTop: string; borderBottomLeftRadius: string; }; '&::-webkit-scrollbar-track:vertical': { borderLeft: string; borderTopRightRadius: string; }; }; }; false: { selectors: { '&::-webkit-scrollbar-track:horizontal': { borderTop: string; }; }; }; }; rowSeparation: { horizontalDividers: {}; zebraStripes: {}; none: {}; }; headers: { hidden: {}; default: {}; }; scroll: { false: {}; x: {}; y: {}; xy: {}; }; }>;