1 | import { getFormattedDateString } from "../../common/dateFormatProps";
|
2 | import { measureTextWidth } from "../../common/utils";
|
3 | import { getDefaultMaxDate, getDefaultMinDate } from "./datePickerCore";
|
4 | /**
|
5 | * DatePicker-related utility functions which may be useful outside this package to
|
6 | * build date/time components. Initially created for use in @blueprintjs/datetime2.
|
7 | */
|
8 | export declare const DatePickerUtils: {
|
9 | getDefaultMaxDate: typeof getDefaultMaxDate;
|
10 | getDefaultMinDate: typeof getDefaultMinDate;
|
11 | getFormattedDateString: typeof getFormattedDateString;
|
12 | measureTextWidth: typeof measureTextWidth;
|
13 | };
|