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