import * as React from 'react'; import { Colors, Sizes, Variants } from "../../styles"; interface Props { label?: React.ReactNode; name: string; size: Sizes; variant: Variants; value: string | number; onChange: (e: { target: { value: string; }; }) => void; error?: string; color: Colors; } declare const DatetimeInput: { (props: Props): JSX.Element; defaultProps: { size: string; color: string; variant: string; onChange: () => void; }; }; export default DatetimeInput;