import type { LayoutDebugModel } from "../../../core/index";
import type { LineChartYAxisLabelModel } from "./axisLabels";
import type { LineChartModel } from "./useChartModel";
export declare const useLineChartDebugLayout: <TData extends Record<string, unknown>>({ enabled, model, onLayoutDebug, tooltip, yAxisLabels }: {
    enabled: boolean;
    model: LineChartModel<TData>;
    onLayoutDebug?: ((model: LayoutDebugModel) => void) | undefined;
    tooltip?: {
        height: number;
        width: number;
        x: number;
        y: number;
    } | undefined;
    yAxisLabels: LineChartYAxisLabelModel[];
}) => LayoutDebugModel | undefined;
//# sourceMappingURL=useDebugLayout.d.ts.map