import React from 'react';
import { HTMLInputElementProps, TextInputProps } from './text-input';
import { Omit } from './types/utils';
export type OmittedProps = 'type' | 'units' | 'placeholder' | 'max';
export type PercentInputProps = Omit;
export declare class PercentInput extends React.Component {
onValueChange: (event: React.KeyboardEvent) => any;
render(): React.JSX.Element;
}
export default PercentInput;