import { IStringProps, TStringValidatorResult } from '../_types'; export interface IToDateProps { } /** * Convert the input string to a `Date`, or `null` if the input is not a date. */ export declare const toDate: (props: IToDateProps & Omit) => TStringValidatorResult;