import type { DefaultOutput } from '../types/Base'; import type { LinearScaleConfig, PowScaleConfig, QuantizeScaleConfig, ScaleConfig, SqrtScaleConfig, SymlogScaleConfig } from '../types/ScaleConfig'; type ZeroableScaleConfigs = LinearScaleConfig | PowScaleConfig | SqrtScaleConfig | SymlogScaleConfig | QuantizeScaleConfig; export default function scaleCanBeZeroed(scaleConfig: ScaleConfig): scaleConfig is ZeroableScaleConfigs; export {}; //# sourceMappingURL=scaleCanBeZeroed.d.ts.map