import * as d3 from "d3"; import { Component, Domain, Settings } from "../types"; export declare const scale: () => d3.ScaleLinear; export declare const domain: () => Domain; export declare const labelFunction: (valueName: any) => (d: any) => string; export declare const tickFormatFunction: (min: number, max: number) => (d: number) => string; export declare const component: (_settings: Settings) => Component;