/** * Crops a marker which has one, or both sides out of bounds * * @param originalX - the marker X position * @param originalWidth - the marker width * @param trackWidth - the track width * * @returns cropped marker x, width and crop options */ export declare const cropMarker: (originalX: number, originalWidth: number, trackWidth: number) => { croppedWidth: number; croppedX: number; };