import { PureComponent } from 'react'; import type { PropsWithChildren } from 'react'; declare type ButtonProps = PropsWithChildren<{ className?: string; disabled?: boolean; value?: Date | null; onChange: (nextValue: Date | null) => void; }>; declare class Button extends PureComponent { static defaultProps: { disabled: boolean; className: null; value: null; }; onClick: () => void; render(): JSX.Element; } export default Button;