import { TableStyleSpecs } from './types'; /** * Default styles attributes. * * * * @remarks * Custom attributes will be shallow-merged. * * @public */ export declare const defaultTableStylesSpecs: TableStyleSpecs; /** * Create css rules from a specification object. * * @param specs - The specifications object. * * @public */ export declare function cssRulesFromSpecs(specs?: TableStyleSpecs): string;