import { TableComponentsEnum, TableConstructorPropTypes } from "./types";
interface TableStyle {
    buildStyleRules: () => Record<`${TableComponentsEnum}Class`, string>;
}
export declare class TableStyles implements TableStyle {
    private themes;
    private additionalClasses;
    constructor({ additionalClasses }: TableConstructorPropTypes);
    buildStyleRules(): {
        tableClass: string;
        tableHeadClass: string;
        headerRowClass: string;
        hiddenIconRepClass: string;
    };
}
export {};
