/**
 * @param input A date string
 * @returns a UNIX timestamp, or the original `input` if a UNIX timestamp could not be created from the `input`.
 */
export declare function toUnixTimestamp(input: string | unknown): number | unknown;
