export default CustomiseBorder; declare class CustomiseBorder extends React.Component { static propTypes: { value: PropTypes.Requireable; onChange: PropTypes.Requireable<(...args: any[]) => any>; setTransparency: PropTypes.Requireable<(...args: any[]) => any>; inputProps: PropTypes.Requireable; }; static defaultProps: { value: string; onChange: any; inputProps: any[]; setTransparency: any; }; constructor(props: any); state: { color: string; width: number; }; UNSAFE_componentWillReceiveProps(props: any): void; onRangeChange: (event: any) => void; onColorChange: (event: any) => void; setValue(value: any): void; refreshValues: () => void; render(): JSX.Element; } import React from "react"; import PropTypes from "prop-types";