import { XYShape } from "../../XYShape.js"; type SamplesToPointSetDistParams = { samples: readonly number[]; continuousOutputLength: number; kernelWidth?: number; logScale?: boolean; }; type ConversionResult = { continuousDist: XYShape | undefined; discreteDist: XYShape; }; export declare const samplesToPointSetDist: ({ samples: unsortedSamples, continuousOutputLength, kernelWidth, logScale, }: SamplesToPointSetDistParams) => ConversionResult; export {}; //# sourceMappingURL=samplesToPointSetDist.d.ts.map