import { ValueConverter } from '@microsoft/fast-element'; /** * A {@link ValueConverter} that converts to and from `Date` values. * @remarks * This converter allows for nullable Date, returning `null` if the * input was `null`, `undefined`, or a non-parsable date. * @public */ export declare const nullableDateConverter: ValueConverter;