import { IPushPullCellStyle } from './types'; export type IPushPullTheme = 'lightTheme' | 'darkTheme'; export interface IPushPullThemeStyles { headerStyle: IPushPullCellStyle; rowStyle: IPushPullCellStyle; altRowStyle: IPushPullCellStyle; } export declare function getThemeStyles(theme: IPushPullTheme): IPushPullThemeStyles;