import type { ResponsiveStyleValue } from '@theme-ui/css'; import type { Theme } from '../../theme'; import type { ComponentStyles } from '../../types/componentStyles'; export interface TableStylesProps { columns: ResponsiveStyleValue; backgroundColorOdd?: keyof Theme['colors']; backgroundColorEven?: keyof Theme['colors']; } export declare const tableStyles: ComponentStyles; export interface TableRowStylesProps { backgroundColor?: keyof Theme['colors']; } export declare const tableRowStyles: ComponentStyles; export interface TableCellStylesProps { columnStart?: ResponsiveStyleValue; columnEnd?: ResponsiveStyleValue; column?: ResponsiveStyleValue; row?: ResponsiveStyleValue; } export declare const tableCellStyles: ComponentStyles;