import React from 'react'; import { DatePickerProps } from '@material-ui/pickers'; interface StyleProps { /** The color of the text */ textColor?: string; /** The color of the outline when selected and hovered on */ focusColor?: string; hoverColor?: string; /** The color of the error to display */ errorColor?: string; /** The color of the outline when it is not selected */ outlineColor?: string; /** The backgroundColor of the input */ backgroundColor?: string; /** The secondary color of the dialog */ secondaryColor?: string; /** The contrastColor of the input */ contrastColor?: string; /** The accent color of the input */ accentColor?: string; /** The borderRadius of the input */ borderRadius?: number; /** If it should display the timePicker */ pickTime?: boolean; /** The padding of the input */ padding?: string; /** The size of the font to display the input in */ fontSize?: number | string; /** The weight of the font of the value and the placeholder */ fontWeight?: number | string; /** The fontsize of the shrunken label */ shrunkenFontSize?: number | string; /** Cant edit */ cantEdit?: boolean; /** The color of the helper text when not error */ helperTextColor?: string; /** Height of the component */ height?: string; } interface RoundedDatePickerProps extends Omit, StyleProps { ref?: React.RefObject; } /** * Generic datepicker with apps designs. Is class due to the use in the react-hook-forms library */ declare class RoundedDatePicker extends React.Component { render(): JSX.Element; } export default RoundedDatePicker;