import { StreamCommonProps, StreamCustomLayerProps, StreamDataProps, StreamDatum, StreamLayerData, StreamLayerDatum, StreamSliceData } from './types'; export declare const useStream: ({ width, height, data, keys, label, valueFormat, offsetType, order, curve, colors, borderColor, dotSize, dotColor, dotBorderWidth, dotBorderColor, }: { width: number; height: number; data: StreamDataProps["data"]; keys: StreamDataProps["keys"]; label?: StreamCommonProps["label"]; valueFormat?: StreamCommonProps["valueFormat"]; offsetType?: StreamCommonProps["offsetType"]; order?: StreamCommonProps["order"]; curve?: StreamCommonProps["curve"]; colors?: StreamCommonProps["colors"]; dotSize?: StreamCommonProps["dotSize"]; dotColor?: StreamCommonProps["dotColor"]; dotBorderWidth?: StreamCommonProps["dotBorderWidth"]; dotBorderColor?: StreamCommonProps["dotBorderColor"]; borderColor?: StreamCommonProps["borderColor"]; }) => { xScale: import("@nivo/scales").ScalePoint; yScale: import("@nivo/scales").ScaleLinear; layers: StreamLayerData[]; slices: StreamSliceData[]; getBorderColor: import("@nivo/colors").InheritedColorConfigCustomFunction | ((d: StreamLayerData) => any); getDotSize: (datum: StreamLayerDatum) => number; getDotColor: import("@nivo/colors").InheritedColorConfigCustomFunction | ((d: StreamLayerDatum) => any); getDotBorderWidth: (datum: StreamLayerDatum) => number; getDotBorderColor: import("@nivo/colors").InheritedColorConfigCustomFunction | ((d: StreamLayerDatum) => any); layerContext: StreamCustomLayerProps; }; //# sourceMappingURL=hooks.d.ts.map