import { RuntimeFn } from '@vanilla-extract/recipes'; /** * CSS custom property seeded on , inherited by every
/ * descendant — lets the `size` variant control cell density from one place. */ declare const cellPaddingBlockVar: `var(--${string})`; export declare const TABLE_STYLES: { cellPaddingBlockVar: `var(--${string})`; wrapper: string; recipe: RuntimeFn<{ size: { sm: { vars: { [cellPaddingBlockVar]: `var(--${string})`; }; }; md: { vars: { [cellPaddingBlockVar]: `var(--${string})`; }; }; lg: { vars: { [cellPaddingBlockVar]: `var(--${string})`; }; }; }; striped: { true: {}; }; bordered: { true: {}; }; fixed: { true: { tableLayout: "fixed"; }; }; }>; }; export {};