You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
382 B
15 lines
382 B
/// <reference types="react" />
|
|
declare const Marks: ({ className, vertical, reverse, marks, included, upperBound, lowerBound, max, min, onClickLabel, }: {
|
|
className: any;
|
|
vertical: any;
|
|
reverse: any;
|
|
marks: any;
|
|
included: any;
|
|
upperBound: any;
|
|
lowerBound: any;
|
|
max: any;
|
|
min: any;
|
|
onClickLabel: any;
|
|
}) => JSX.Element;
|
|
export default Marks;
|