import React from 'react';
export declare type CustomMarkType = React.ComponentType<{
    value: number;
    active: boolean;
}>;
declare type CustomMarksProps = {
    CustomMark?: CustomMarkType;
    minimumValue: number;
    maximumValue: number;
    step: number;
    activeValues: number[];
    inverted: boolean;
    vertical: boolean;
};
declare const Marks: ({ CustomMark, step, minimumValue, maximumValue, activeValues, inverted, vertical }: CustomMarksProps) => JSX.Element;
export default Marks;
