import * as common from '../common'; export interface Options { bucketCount?: number; bucketSize?: number; bucketOffset?: number; legend: common.VizLegendOptions; tooltip: common.VizTooltipOptions; combine?: boolean; } export declare const defaultOptions: () => Options; export interface FieldConfig { lineWidth?: number; fillOpacity?: number; axisPlacement?: common.AxisPlacement; axisColorMode?: common.AxisColorMode; axisLabel?: string; axisWidth?: number; axisSoftMin?: number; axisSoftMax?: number; axisGridShow?: boolean; scaleDistribution?: common.ScaleDistributionConfig; axisCenteredZero?: boolean; hideFrom?: common.HideSeriesConfig; stacking?: common.StackingConfig; gradientMode?: common.GraphGradientMode; axisBorderShow?: boolean; } export declare const defaultFieldConfig: () => FieldConfig;