UNPKG

479 BTypeScriptView Raw
1import type { IDetailsHeaderStyleProps, IDetailsHeaderStyles } from './DetailsHeader.types';
2import type { IStyle, ITheme } from '../../Styling';
3import type { ICellStyleProps } from './DetailsRow.types';
4export declare const HEADER_HEIGHT = 42;
5export declare const getCellStyles: (props: {
6 theme: ITheme;
7 cellStyleProps?: ICellStyleProps | undefined;
8}) => IStyle;
9export declare const getDetailsHeaderStyles: (props: IDetailsHeaderStyleProps) => IDetailsHeaderStyles;