import { css } from "styled-components"; import { IAppTheme } from "../../types"; import { TTableVariant } from "./types"; export type TTableStyles = { cellPaddingX: string; cellPaddingY: string; cellBottomBorder: string; headCellColor: ReturnType; headCellPadding: string; headBackground: ReturnType; tableBackground: ReturnType; tableBorder: string; headCellSortableColor: ReturnType; }; export declare const getTableStyles: (theme: IAppTheme, variant: TTableVariant, withoutContainerStyles?: boolean) => TTableStyles;