/** * The `BarDivergingCell` component renders a table cell representing a numerical value as a bar, where the length of the bar encodes the value. * There is a vertical line at x=0, and the bar color indicates whether the value is greater than or less than 0. * @component */ import type { BarDivergingCellProps } from './BarDivergingCellProps'; declare const BarDivergingCell: import("svelte").Component; type BarDivergingCell = ReturnType; export default BarDivergingCell; //# sourceMappingURL=BarDivergingCell.svelte.d.ts.map