import type { DataXY } from 'cheminfo-types'; export interface SetMinXFilter { name: 'setMinX'; options?: SetMinXOptions; } export interface SetMinXOptions { /** * @default 0 */ min?: number; } /** * Filter that allows to * @param data * @param options */ export declare function setMinX(data: DataXY, options?: SetMinXOptions): { data: DataXY; }; //# sourceMappingURL=setMinX.d.ts.map