export declare const dateCharTypes: string[]; export declare const DateOrTimeInputType: { readonly DATE: "date"; readonly TIME: "time"; }; export type DateOrTimeInputType = (typeof DateOrTimeInputType)[keyof typeof DateOrTimeInputType]; export type NvDateInputValue = string | Date | null; export interface NvDateInputOnChangeHandler { (value: NvDateInputValue): void; }