Repository URL to install this package:
|
Version:
4.2.0-a11y.0 ▾
|
import React from 'react';
import { NO_OP } from 'exotic';
import { IncrementerProps, IncrementerStateType } from './typings';
declare class Incrementer extends React.Component<IncrementerProps, IncrementerStateType> {
static defaultProps: {
className: string;
step: number;
minValue: number;
maxValue: number;
onValueChange: typeof NO_OP;
};
observableState: IncrementerStateType;
updateState: (value: IncrementerProps) => void;
/**
* @todo renderProp for this
*/
render(): JSX.Element;
}
export { Incrementer };
export default Incrementer;