/** * Copied from the @react-stately/datepicker utils * https://github.com/adobe/react-spectrum/blob/main/packages/%40react-stately/datepicker/src/utils.ts */ export type FieldOptions = Pick; export interface FormatterOptions { shouldForceLeadingZeros?: boolean; } export declare function getFormatOptions(options: FormatterOptions): Intl.DateTimeFormatOptions;