export interface TableVariables {
    color: string;
    hoverColor: string;
    backgroundColor: string;
    backgroundHoverColor: string;
    borderWidth: string;
    headerBorderColor: string;
    headerBorderHoverColor: string;
    headerBorderFocusColor: string;
    rowBorderColor: string;
    rowBorderHoverColor: string;
    rowBorderFocusColor: string;
    cellBorderColor: string;
    cellBorderHoverColor: string;
    cellBorderFocusColor: string;
    defaultRowHeight: string;
    compactRowHeight: string;
    minCellWidth: string;
    cellPadding: string;
    rowPadding: string;
    headerFontSize: string;
    bodyFontSize: string;
}
export declare const tableVariables: (siteVariables: any) => Partial<TableVariables>;
