import React from "react";
import { IDateSelectButtonProps } from "../../models/IDateInputProps";
/**
 * Description: DateSelectButton component is used to select a date from a calendar popup.
 * inputFormat is used to format the date value passed from the parent component & it will be visible in displayFormat.
 * defaultMonth - by default it will be taken from the value OR props.defaultMonth OR current month
 *
 */
declare const DateSelectButton: React.FC<IDateSelectButtonProps>;
export default DateSelectButton;
