import { StylingModel } from '../style/styling.model'; import { CoreStylingModel } from '../core/core-styling.model'; import { IconStylingModel } from '../icon/icon-styling.model'; export declare class DatatableStylingModel extends CoreStylingModel { /** * Styling of header by StylingModel */ header?: StylingModel; /** * Styling of table by StylingModel */ table?: StylingModel; /** * Styling of tableCell by StylingModel */ tableCell?: StylingModel; /** * Styling of tableRowDetails by StylingModel */ tableRowDetails?: StylingModel; /** * Styling of expandIcon by IconStylingModel */ expandIcon?: IconStylingModel; /** * Styling of collapseIcon by IconStylingModel */ collapseIcon?: IconStylingModel; /** * Styling of footer by StylingModel */ footer?: StylingModel; /** @hidden */ constructor(values?: Object); }