import { VerticalAlignment } from '../Table/Table.types'; import { Align } from './Cell.types'; /** The base left & right padding in the table */ export declare const baseTableSidePadding: 24; /** the default height of a cell */ export declare const standardCellHeight: number; export declare const getCellPadding: ({ depth, isExpandable, isSelectable, }: { depth?: number; isExpandable?: boolean; isSelectable?: boolean; }) => string; export declare const getCellStyles: (depth?: number, isExpandable?: boolean, isSelectable?: boolean) => string; export declare const getCellContainerStyles: (align?: Align) => string; export declare const getBaseCellStyles: (verticalAlignment?: VerticalAlignment) => string; export declare const cellInnerStyles: string; export declare const getCellEllipsisStyles: (shouldTruncate: boolean) => string; //# sourceMappingURL=Cell.styles.d.ts.map