import * as React from "react"; interface IBottomProps { handerChangeDate: (...args: any[]) => void; date: Date; onOk: (...args: any[]) => void; showToday: boolean; } export default class Bottom extends React.Component { static defaultProps: { onOk: undefined; }; changeNowDate(e: any): void; render(): JSX.Element; } export {};